node/tools/eslint/node_modules/process-nextick-args
Rich Trott 72fa9f5663 tools: update ESLint to v3.8.0
Update ESLint to v3.8.0.

* Installed with `npm install --production` to avoid installing
  unnecessary dev files
* Used `dmn -f clean` to further eliminate unneeded files

PR-URL: https://github.com/nodejs/node/pull/9112
Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
2016-10-18 21:10:36 -07:00
..
index.js tools: update ESLint, fix unused vars bug 2016-07-11 13:47:20 -07:00
license.md tools: update eslint to v1.10.3 2016-01-13 23:15:39 +01:00
package.json tools: update ESLint to v3.8.0 2016-10-18 21:10:36 -07:00
readme.md tools: update eslint to v1.10.3 2016-01-13 23:15:39 +01:00

process-nextick-args

Build Status

npm install --save process-nextick-args

Always be able to pass arguments to process.nextTick, no matter the platform

var nextTick = require('process-nextick-args');

nextTick(function (a, b, c) {
  console.log(a, b, c);
}, 'step', 3,  'profit');