Skip to content
Snippets Groups Projects
Select Git revision
  • d6c19258e3d1cb350309c652d872bfc93b768b61
  • master default
  • add-mongoose
  • add-website
  • add-bot
5 results

process-nextick-args

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    Guillaume Vagner authored
    82e39307
    History
    Name Last commit Last update
    ..
    index.js
    license.md
    package.json
    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');