Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi 6 年之前
..
.travis.yml cefd1c2ad0 updated sys and created publi 6 年之前
index.js cefd1c2ad0 updated sys and created publi 6 年之前
license.md cefd1c2ad0 updated sys and created publi 6 年之前
package.json cefd1c2ad0 updated sys and created publi 6 年之前
readme.md cefd1c2ad0 updated sys and created publi 6 年之前
test.js cefd1c2ad0 updated sys and created publi 6 年之前

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