mirror of
https://github.com/actions/setup-java.git
synced 2025-04-22 10:56:45 +00:00
Fix.
This commit is contained in:
parent
596a6da241
commit
c1a589c5b6
7078 changed files with 1882834 additions and 319 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