Remove stub type definitions

This commit is contained in:
Henry Mercer 2022-02-03 17:55:53 +00:00
parent c72c200f52
commit 8768b0f5a3
167 changed files with 0 additions and 35030 deletions

View file

@ -1,18 +0,0 @@
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');
```