CoolFace
Apppublic

TrinetraLabs/Placebo_AI

sourceHugging Faceupdated 2mo agoView on Hugging Face
0likes
1process-nextick-args2=====3 4[![Build Status](https://travis-ci.org/calvinmetcalf/process-nextick-args.svg?branch=master)](https://travis-ci.org/calvinmetcalf/process-nextick-args)5 6```bash7npm install --save process-nextick-args8```9 10Always be able to pass arguments to process.nextTick, no matter the platform11 12```js13var pna = require('process-nextick-args');14 15pna.nextTick(function (a, b, c) {16  console.log(a, b, c);17}, 'step', 3,  'profit');18```19