gitlink-cli/node_modules/process-nextick-args
赵昌 43348a195f
CI / test (push) Has been cancelled Details
chore: 同步本地更改
2026-07-02 14:39:05 +08:00
..
index.js chore: 同步本地更改 2026-07-02 14:39:05 +08:00
license.md chore: 同步本地更改 2026-07-02 14:39:05 +08:00
package.json chore: 同步本地更改 2026-07-02 14:39:05 +08:00
readme.md chore: 同步本地更改 2026-07-02 14:39:05 +08:00

readme.md

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