]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/process-nextick-args/readme.md
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / node_modules / request / node_modules / bl / node_modules / readable-stream / node_modules / process-nextick-args / readme.md
1 process-nextick-args
2 =====
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 ```bash
7 npm install --save process-nextick-args
8 ```
9
10 Always be able to pass arguments to process.nextTick, no matter the platform
11
12 ```js
13 var nextTick = require('process-nextick-args');
14
15 nextTick(function (a, b, c) {
16   console.log(a, b, c);
17 }, 'step', 3,  'profit');
18 ```