git.schokokeks.org
Repositories
Help
Report an Issue
fs-words.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
6e9c872
Branches
Tags
develop-client_server
master
typescript
fs-words.git
server
lib
node_modules
process-nextick-args
readme.md
[add] server:lib:node_modules
Christian Fraß
commited
6e9c872
at 2021-03-08 23:52:07
readme.md
Blame
History
Raw
process-nextick-args ===== [![Build Status](https://travis-ci.org/calvinmetcalf/process-nextick-args.svg?branch=master)](https://travis-ci.org/calvinmetcalf/process-nextick-args) ```bash npm install --save process-nextick-args ``` Always be able to pass arguments to process.nextTick, no matter the platform ```js var pna = require('process-nextick-args'); pna.nextTick(function (a, b, c) { console.log(a, b, c); }, 'step', 3, 'profit'); ```