process-nextick-args

Build Status

  1. npm install --save process-nextick-args

Always be able to pass arguments to process.nextTick, no matter the platform

  1. var pna = require('process-nextick-args');
  2. pna.nextTick(function (a, b, c) {
  3. console.log(a, b, c);
  4. }, 'step', 3, 'profit');