Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi hace 6 años
..
.travis.yml cefd1c2ad0 updated sys and created publi hace 6 años
index.js cefd1c2ad0 updated sys and created publi hace 6 años
license.md cefd1c2ad0 updated sys and created publi hace 6 años
package.json cefd1c2ad0 updated sys and created publi hace 6 años
readme.md cefd1c2ad0 updated sys and created publi hace 6 años
test.js cefd1c2ad0 updated sys and created publi hace 6 años

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