You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

readme.md 450B

123456789101112131415161718
  1. process-nextick-args
  2. =====
  3. [![Build Status](https://travis-ci.org/calvinmetcalf/process-nextick-args.svg?branch=master)](https://travis-ci.org/calvinmetcalf/process-nextick-args)
  4. ```bash
  5. npm install --save process-nextick-args
  6. ```
  7. Always be able to pass arguments to process.nextTick, no matter the platform
  8. ```js
  9. var pna = require('process-nextick-args');
  10. pna.nextTick(function (a, b, c) {
  11. console.log(a, b, c);
  12. }, 'step', 3, 'profit');
  13. ```