diff options
Diffstat (limited to 'node_modules/process-nextick-args/readme.md')
-rw-r--r-- | node_modules/process-nextick-args/readme.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/node_modules/process-nextick-args/readme.md b/node_modules/process-nextick-args/readme.md index 78e7cfaeb..ecb432c9b 100644 --- a/node_modules/process-nextick-args/readme.md +++ b/node_modules/process-nextick-args/readme.md @@ -10,9 +10,9 @@ npm install --save process-nextick-args Always be able to pass arguments to process.nextTick, no matter the platform ```js -var nextTick = require('process-nextick-args'); +var pna = require('process-nextick-args'); -nextTick(function (a, b, c) { +pna.nextTick(function (a, b, c) { console.log(a, b, c); }, 'step', 3, 'profit'); ``` |