13
0
Fork 0
mirror of https://github.com/goreleaser/goreleaser-action.git synced 2026-07-03 19:49:37 +00:00
goreleaser-action/node_modules/process-nextick-args
2019-11-14 23:36:55 +01:00
..
index.js Initial commit 2019-09-20 22:23:46 +02:00
license.md Initial commit 2019-09-20 22:23:46 +02:00
package.json Update node_modules 2019-11-14 23:36:55 +01:00
readme.md Initial commit 2019-09-20 22:23:46 +02: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 pna = require('process-nextick-args');

pna.nextTick(function (a, b, c) {
  console.log(a, b, c);
}, 'step', 3,  'profit');