Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorGovee91 <pierluigi.iannarelli@gmail.com>2017-10-06 20:30:37 +0300
committerMyles Borins <mylesborins@google.com>2017-10-11 09:05:58 +0300
commitca5f4f0ed30b9c7761250a795d40ce1491d526fe (patch)
tree8cc21a1af934126472c4d05324dea33d51a5fe5a /tools
parente12dc40c2f7ff4b7bf9e7ec1b90813f747ed4fba (diff)
tools: use more template literals
PR-URL: https://github.com/nodejs/node/pull/15942 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'tools')
-rw-r--r--tools/license2rtf.js21
1 files changed, 9 insertions, 12 deletions
diff --git a/tools/license2rtf.js b/tools/license2rtf.js
index 22b5ffd522f..a32a121135e 100644
--- a/tools/license2rtf.js
+++ b/tools/license2rtf.js
@@ -245,22 +245,19 @@ function RtfGenerator() {
if (li)
level++;
- var rtf = '\\pard';
- rtf += '\\sa150\\sl300\\slmult1';
+ var rtf = '\\pard\\sa150\\sl300\\slmult1';
if (level > 0)
- rtf += '\\li' + (level * 240);
+ rtf += `\\li${level * 240}`;
if (li) {
- rtf += '\\tx' + (level) * 240;
- rtf += '\\fi-240';
+ rtf += `\\tx${level * 240}\\fi-240`;
}
if (lic)
rtf += '\\ri240';
if (!lic)
rtf += '\\b';
if (li)
- rtf += ' ' + li + '\\tab';
- rtf += ' ';
- rtf += lines.map(rtfEscape).join('\\line ');
+ rtf += ` ${li}\\tab`;
+ rtf += ` ${lines.map(rtfEscape).join('\\line ')}`;
if (!lic)
rtf += '\\b0';
rtf += '\\par\n';
@@ -279,25 +276,25 @@ function RtfGenerator() {
function toHex(number, length) {
var hex = (~~number).toString(16);
while (hex.length < length)
- hex = '0' + hex;
+ hex = `0${hex}`;
return hex;
}
function rtfEscape(string) {
return string
.replace(/[\\{}]/g, function(m) {
- return '\\' + m;
+ return `\\${m}`;
})
.replace(/\t/g, function() {
return '\\tab ';
})
// eslint-disable-next-line no-control-regex
.replace(/[\x00-\x1f\x7f-\xff]/g, function(m) {
- return '\\\'' + toHex(m.charCodeAt(0), 2);
+ return `\\'${toHex(m.charCodeAt(0), 2)}`;
})
.replace(/\ufeff/g, '')
.replace(/[\u0100-\uffff]/g, function(m) {
- return '\\u' + toHex(m.charCodeAt(0), 4) + '?';
+ return `\\u${toHex(m.charCodeAt(0), 4)}?`;
});
}