mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-21 21:44:46 +00:00
.
This commit is contained in:
parent
fc725ba36b
commit
422b9fdb15
7395 changed files with 1786235 additions and 3476 deletions
28
node_modules/number-is-nan/readme.md
generated
vendored
Normal file
28
node_modules/number-is-nan/readme.md
generated
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
# number-is-nan [](https://travis-ci.org/sindresorhus/number-is-nan)
|
||||
|
||||
> ES2015 [`Number.isNaN()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isNaN) [ponyfill](https://ponyfill.com)
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save number-is-nan
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var numberIsNan = require('number-is-nan');
|
||||
|
||||
numberIsNan(NaN);
|
||||
//=> true
|
||||
|
||||
numberIsNan('unicorn');
|
||||
//=> false
|
||||
```
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](http://sindresorhus.com)
|
Loading…
Add table
Add a link
Reference in a new issue