lib: refactor to use more primordials

PR-URL: https://github.com/nodejs/node/pull/35875
Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit is contained in:
Antoine du Hamel
2020-10-29 19:43:42 +01:00
parent 1f6ca18c3b
commit c723e4cb0b

View File

@@ -1,6 +1,8 @@
'use strict';
const {
ArrayPrototypePush,
ArrayPrototypeSlice,
JSONStringify,
} = primordials;
@@ -22,17 +24,18 @@ const scriptFiles = [
];
let script = '';
scriptFiles.forEach((s) => {
for (const s of scriptFiles) {
script += internalBinding('natives')[s] + '\n';
});
}
const tickArguments = [];
if (process.platform === 'darwin') {
tickArguments.push('--mac');
ArrayPrototypePush(tickArguments, '--mac');
} else if (process.platform === 'win32') {
tickArguments.push('--windows');
ArrayPrototypePush(tickArguments, '--windows');
}
tickArguments.push.apply(tickArguments, process.argv.slice(1));
ArrayPrototypePush(tickArguments,
...ArrayPrototypeSlice(process.argv, 1));
script = `(function(module, require) {
arguments = ${JSONStringify(tickArguments)};
function write (s) { process.stdout.write(s) }