first commit
This commit is contained in:
2
build/node_modules/max-safe-integer/index.js
generated
vendored
Normal file
2
build/node_modules/max-safe-integer/index.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
'use strict';
|
||||
module.exports = 9007199254740991;
|
||||
21
build/node_modules/max-safe-integer/license
generated
vendored
Normal file
21
build/node_modules/max-safe-integer/license
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
68
build/node_modules/max-safe-integer/package.json
generated
vendored
Normal file
68
build/node_modules/max-safe-integer/package.json
generated
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"_from": "max-safe-integer@^1.0.1",
|
||||
"_id": "max-safe-integer@1.0.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-84BgvixWPYwC5tSK85Ei/YO29BA=",
|
||||
"_location": "/max-safe-integer",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "max-safe-integer@^1.0.1",
|
||||
"name": "max-safe-integer",
|
||||
"escapedName": "max-safe-integer",
|
||||
"rawSpec": "^1.0.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^1.0.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/is-index-x"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/max-safe-integer/-/max-safe-integer-1.0.1.tgz",
|
||||
"_shasum": "f38060be2c563d8c02e6d48af39122fd83b6f410",
|
||||
"_spec": "max-safe-integer@^1.0.1",
|
||||
"_where": "/Users/asciidisco/Desktop/asciidisco.com/build/node_modules/is-index-x",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/max-safe-integer/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "ES2015 Number.MAX_SAFE_INTEGER ponyfill",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/max-safe-integer#readme",
|
||||
"keywords": [
|
||||
"es2015",
|
||||
"ponyfill",
|
||||
"polyfill",
|
||||
"shim",
|
||||
"number",
|
||||
"safe",
|
||||
"is",
|
||||
"integer",
|
||||
"max"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "max-safe-integer",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/max-safe-integer.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "1.0.1"
|
||||
}
|
||||
25
build/node_modules/max-safe-integer/readme.md
generated
vendored
Normal file
25
build/node_modules/max-safe-integer/readme.md
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
# max-safe-integer [](https://travis-ci.org/sindresorhus/max-safe-integer) [](https://youtu.be/RW6Lp3Y3Vxs?t=16)
|
||||
|
||||
> ES2015 [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER) [ponyfill](https://ponyfill.com)
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save max-safe-integer
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var MAX_SAFE_INTEGER = require('max-safe-integer');
|
||||
|
||||
console.log(MAX_SAFE_INTEGER);
|
||||
//=> 9007199254740991
|
||||
```
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](http://sindresorhus.com)
|
||||
Reference in New Issue
Block a user