diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-04-21 00:20:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 00:20:33 +0200 |
commit | 8a7539cab36699465ec6e37455c54fa86f3c0cbe (patch) | |
tree | c3df15f3b673d1ec1a9c4ffada1a9274e3aca942 /runtime/js/90_deno_ns.js | |
parent | 8b258070542a81d217226fe832b26d81cf20113d (diff) |
feat(runtime): two-tier subprocess API (#11618)
Diffstat (limited to 'runtime/js/90_deno_ns.js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index ddaecd7c9..61e894f8a 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -151,5 +151,9 @@ funlockSync: __bootstrap.fs.funlockSync, refTimer: __bootstrap.timers.refTimer, unrefTimer: __bootstrap.timers.unrefTimer, + Child: __bootstrap.spawn.Child, + spawnChild: __bootstrap.spawn.spawnChild, + spawn: __bootstrap.spawn.spawn, + spawnSync: __bootstrap.spawn.spawnSync, }; })(this); |