Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi 6 years ago
..
.travis.yml 0611418f7a added whole system from ola4doc 6 years ago
index.js 0611418f7a added whole system from ola4doc 6 years ago
license.md 0611418f7a added whole system from ola4doc 6 years ago
package.json cefd1c2ad0 updated sys and created publi 6 years ago
readme.md 0611418f7a added whole system from ola4doc 6 years ago
test.js 0611418f7a added whole system from ola4doc 6 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');