This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
reValuate/node_modules/pn/child_process.js

14 lines
1004 B
JavaScript
Raw Permalink Normal View History

2021-04-02 02:24:13 +03:00
var child_process = require("child_process");
var promisify = require("./_promisify.js");
var bind = function(c, f) { return f && f.bind(c); };
Object.defineProperties(module.exports, {
ChildProcess: { enumerable: true, value: child_process.ChildProcess },
//_forkChild: // skipping
exec: { enumerable: true, value: promisify(child_process, child_process.exec, 1, {"pattern":["stdout","stderr"],"returnsObject":true}) },
execFile: { enumerable: true, value: promisify(child_process, child_process.execFile, 1, {"pattern":["stdout","stderr"],"returnsObject":true}) },
execFileSync: { enumerable: true, value: bind(child_process, child_process.execFileSync) },
execSync: { enumerable: true, value: bind(child_process, child_process.execSync) },
fork: { enumerable: true, value: bind(child_process, child_process.fork) },
spawn: { enumerable: true, value: bind(child_process, child_process.spawn) },
spawnSync: { enumerable: true, value: bind(child_process, child_process.spawnSync) },
});