Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
index.js | D | 12-May-2024 | 1 KiB | 45 | 41 | |
license.md | D | 12-May-2024 | 1 KiB | 20 | 16 | |
package.json | D | 12-May-2024 | 1.5 KiB | 51 | 50 | |
readme.md | D | 12-May-2024 | 450 | 19 | 13 |
readme.md
1process-nextick-args 2===== 3 4[![Build Status](https://travis-ci.org/calvinmetcalf/process-nextick-args.svg?branch=master)](https://travis-ci.org/calvinmetcalf/process-nextick-args) 5 6```bash 7npm install --save process-nextick-args 8``` 9 10Always be able to pass arguments to process.nextTick, no matter the platform 11 12```js 13var pna = require('process-nextick-args'); 14 15pna.nextTick(function (a, b, c) { 16 console.log(a, b, c); 17}, 'step', 3, 'profit'); 18``` 19