您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
diligent 13e492f897 Added mocks of scrapes 4 年前
..
index.js Init commit 4 年前
license.md Init commit 4 年前
package.json Added mocks of scrapes 4 年前
readme.md Init commit 4 年前

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