ez-indexation / app / node_modules / process-nextick-args /
@kieffer kieffer authored on 7 Mar 2017
..
.travis.yml v0.0.0 7 years ago
index.js v0.0.0 7 years ago
license.md v0.0.0 7 years ago
package.json v0.0.0 7 years ago
readme.md v0.0.0 7 years ago
test.js v0.0.0 7 years ago
readme.md

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');