1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-11 10:22:53 +00:00
Files
..
2016-01-04 12:25:28 -05:00
2016-01-04 12:25:28 -05:00
2016-01-04 12:25:28 -05:00
2016-01-04 12:25:28 -05:00
2016-01-04 12:25:28 -05:00

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