mini.css/node_modules/process-nextick-args
Angelos Chalaris 11e48409bb Started working on Gluon core
Core module has been initialized, as well as a default flavor. Minor changes (read DEVLOG), moved things around, cleaned up some things and built some of the basic features.
2018-05-28 12:29:34 +03:00
..
.travis.yml Started working on Gluon core 2018-05-28 12:29:34 +03:00
index.js Started working on Gluon core 2018-05-28 12:29:34 +03:00
license.md Started working on Gluon core 2018-05-28 12:29:34 +03:00
package.json Started working on Gluon core 2018-05-28 12:29:34 +03:00
readme.md Started working on Gluon core 2018-05-28 12:29:34 +03:00
test.js Started working on Gluon core 2018-05-28 12:29:34 +03: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');