We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b5ccea commit 53e0be5Copy full SHA for 53e0be5
src/Node/ChildProcess.js
@@ -32,6 +32,13 @@ exports.execImpl = function execImpl(command) {
32
};
33
34
35
+exports.fork = function fork(cmd) {
36
+ return function(args) {
37
+ return function() {
38
+ return require("child_process").fork(cmd, args);
39
+ };
40
41
+};
42
exports.mkOnExit = function mkOnExit(mkChildExit){
43
return function onExit(cp){
44
return function(cb){
0 commit comments