1
0
mirror of https://github.com/Chalarangelo/mini.css.git synced 2025-01-17 21:08:13 +01:00
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
..
2018-05-28 12:29:34 +03:00
2018-05-28 12:29:34 +03:00
2018-05-28 12:29:34 +03:00
2018-05-28 12:29:34 +03:00
2018-05-28 12:29:34 +03:00
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');