Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi vor 6 Jahren
..
.travis.yml 0611418f7a added whole system from ola4doc vor 6 Jahren
index.js 0611418f7a added whole system from ola4doc vor 6 Jahren
license.md 0611418f7a added whole system from ola4doc vor 6 Jahren
package.json cefd1c2ad0 updated sys and created publi vor 6 Jahren
readme.md 0611418f7a added whole system from ola4doc vor 6 Jahren
test.js 0611418f7a added whole system from ola4doc vor 6 Jahren

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