diff options
author | Florian Dold <florian.dold@gmail.com> | 2018-09-20 02:56:13 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2018-09-20 02:56:13 +0200 |
commit | bbff7403fbf46f9ad92240ac213df8d30ef31b64 (patch) | |
tree | c58400ec5124da1c7d56b01aea83309f80a56c3b /node_modules/process-nextick-args/index.js | |
parent | 003fb34971cf63466184351b4db5f7c67df4f444 (diff) |
update packages
Diffstat (limited to 'node_modules/process-nextick-args/index.js')
-rw-r--r-- | node_modules/process-nextick-args/index.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/node_modules/process-nextick-args/index.js b/node_modules/process-nextick-args/index.js index a4f40f845..5f585e8e7 100644 --- a/node_modules/process-nextick-args/index.js +++ b/node_modules/process-nextick-args/index.js @@ -3,9 +3,9 @@ if (!process.version || process.version.indexOf('v0.') === 0 || process.version.indexOf('v1.') === 0 && process.version.indexOf('v1.8.') !== 0) { - module.exports = nextTick; + module.exports = { nextTick: nextTick }; } else { - module.exports = process.nextTick; + module.exports = process } function nextTick(fn, arg1, arg2, arg3) { @@ -41,3 +41,4 @@ function nextTick(fn, arg1, arg2, arg3) { }); } } + |