Initial commit
This commit is contained in:
parent
6c073b08f7
commit
9c876279c7
17
node_modules/.yarn-integrity
generated
vendored
Normal file
17
node_modules/.yarn-integrity
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"systemParams": "linux-x64-93",
|
||||||
|
"modulesFolders": [
|
||||||
|
"node_modules"
|
||||||
|
],
|
||||||
|
"flags": [],
|
||||||
|
"linkedModules": [],
|
||||||
|
"topLevelPatterns": [
|
||||||
|
"is-odd@^3.0.1"
|
||||||
|
],
|
||||||
|
"lockfileEntries": {
|
||||||
|
"is-number@^6.0.0": "https://registry.yarnpkg.com/is-number/-/is-number-6.0.0.tgz#e6d15ad31fc262887cccf217ae5f9316f81b1995",
|
||||||
|
"is-odd@^3.0.1": "https://registry.yarnpkg.com/is-odd/-/is-odd-3.0.1.tgz#65101baf3727d728b66fa62f50cda7f2d3989601"
|
||||||
|
},
|
||||||
|
"files": [],
|
||||||
|
"artifacts": {}
|
||||||
|
}
|
21
node_modules/is-number/LICENSE
generated
vendored
Normal file
21
node_modules/is-number/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2014-2018, Jon Schlinkert.
|
||||||
|
|
||||||
|
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.
|
152
node_modules/is-number/README.md
generated
vendored
Normal file
152
node_modules/is-number/README.md
generated
vendored
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
# is-number [![NPM version](https://img.shields.io/npm/v/is-number.svg?style=flat)](https://www.npmjs.com/package/is-number) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-number.svg?style=flat)](https://npmjs.org/package/is-number) [![NPM total downloads](https://img.shields.io/npm/dt/is-number.svg?style=flat)](https://npmjs.org/package/is-number) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/is-number.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/is-number)
|
||||||
|
|
||||||
|
> Returns true if the value is a number. comprehensive tests.
|
||||||
|
|
||||||
|
Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
Install with [npm](https://www.npmjs.com/):
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ npm install --save is-number
|
||||||
|
```
|
||||||
|
|
||||||
|
## Why is this needed?
|
||||||
|
|
||||||
|
This library provides a fast, simple way of checking whether a value is a number, whether defined as a string or number by the user.
|
||||||
|
|
||||||
|
It's easy to check for a number in JavaScript, all we need to do is `typeof value === 'number'`. But sometimes that's not enough. For example, `typeof NaN` returns `number`, and there are many use cases where it's possible or necessary for a numerical value to be defined as a string, like in parsers or regex matches where it's not possible for the value to be defined as a number.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
To understand some of the rationale behind the decisions made in this library (and to learn about some oddities of number evaluation in JavaScript), [see this gist](https://gist.github.com/jonschlinkert/e30c70c713da325d0e81).
|
||||||
|
|
||||||
|
```js
|
||||||
|
const isNumber = require('is-number');
|
||||||
|
```
|
||||||
|
|
||||||
|
### true
|
||||||
|
|
||||||
|
See the [tests](./test.js) for more examples.
|
||||||
|
|
||||||
|
```js
|
||||||
|
isNumber(5e3); // true
|
||||||
|
isNumber(0xff); // true
|
||||||
|
isNumber(-1.1); // true
|
||||||
|
isNumber(0); // true
|
||||||
|
isNumber(1); // true
|
||||||
|
isNumber(1.1); // true
|
||||||
|
isNumber(10); // true
|
||||||
|
isNumber(10.10); // true
|
||||||
|
isNumber(100); // true
|
||||||
|
isNumber('-1.1'); // true
|
||||||
|
isNumber('0'); // true
|
||||||
|
isNumber('012'); // true
|
||||||
|
isNumber('0xff'); // true
|
||||||
|
isNumber('1'); // true
|
||||||
|
isNumber('1.1'); // true
|
||||||
|
isNumber('10'); // true
|
||||||
|
isNumber('10.10'); // true
|
||||||
|
isNumber('100'); // true
|
||||||
|
isNumber('5e3'); // true
|
||||||
|
isNumber(parseInt('012')); // true
|
||||||
|
isNumber(parseFloat('012')); // true
|
||||||
|
```
|
||||||
|
|
||||||
|
### False
|
||||||
|
|
||||||
|
See the [tests](./test.js) for more examples.
|
||||||
|
|
||||||
|
```js
|
||||||
|
isNumber('foo'); // false
|
||||||
|
isNumber([1]); // false
|
||||||
|
isNumber([]); // false
|
||||||
|
isNumber(function () {}); // false
|
||||||
|
isNumber(Infinity); // false
|
||||||
|
isNumber(NaN); // false
|
||||||
|
isNumber(new Buffer('abc')); // false
|
||||||
|
isNumber(null); // false
|
||||||
|
isNumber(undefined); // false
|
||||||
|
isNumber({abc: 'abc'}); // false
|
||||||
|
```
|
||||||
|
|
||||||
|
## Release history
|
||||||
|
|
||||||
|
### 6.0.0
|
||||||
|
|
||||||
|
* optimizations, thanks to @benaadams.
|
||||||
|
|
||||||
|
### 5.0.0
|
||||||
|
|
||||||
|
**Breaking changes**
|
||||||
|
|
||||||
|
* removed support for `instanceof Number` and `instanceof String`
|
||||||
|
|
||||||
|
## About
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Contributing</strong></summary>
|
||||||
|
|
||||||
|
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Running Tests</strong></summary>
|
||||||
|
|
||||||
|
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ npm install && npm test
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Building docs</strong></summary>
|
||||||
|
|
||||||
|
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
|
||||||
|
|
||||||
|
To generate the readme, run the following command:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ npm install -g verbose/verb#dev verb-generate-readme && verb
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
### Related projects
|
||||||
|
|
||||||
|
You might also be interested in these projects:
|
||||||
|
|
||||||
|
* [is-plain-object](https://www.npmjs.com/package/is-plain-object): Returns true if an object was created by the `Object` constructor. | [homepage](https://github.com/jonschlinkert/is-plain-object "Returns true if an object was created by the `Object` constructor.")
|
||||||
|
* [is-primitive](https://www.npmjs.com/package/is-primitive): Returns `true` if the value is a primitive. | [homepage](https://github.com/jonschlinkert/is-primitive "Returns `true` if the value is a primitive. ")
|
||||||
|
* [isobject](https://www.npmjs.com/package/isobject): Returns true if the value is an object and not an array or null. | [homepage](https://github.com/jonschlinkert/isobject "Returns true if the value is an object and not an array or null.")
|
||||||
|
* [kind-of](https://www.npmjs.com/package/kind-of): Get the native type of a value. | [homepage](https://github.com/jonschlinkert/kind-of "Get the native type of a value.")
|
||||||
|
|
||||||
|
### Contributors
|
||||||
|
|
||||||
|
| **Commits** | **Contributor** |
|
||||||
|
| --- | --- |
|
||||||
|
| 47 | [jonschlinkert](https://github.com/jonschlinkert) |
|
||||||
|
| 5 | [charlike-old](https://github.com/charlike-old) |
|
||||||
|
| 1 | [benaadams](https://github.com/benaadams) |
|
||||||
|
| 1 | [realityking](https://github.com/realityking) |
|
||||||
|
|
||||||
|
### Author
|
||||||
|
|
||||||
|
**Jon Schlinkert**
|
||||||
|
|
||||||
|
* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
|
||||||
|
* [GitHub Profile](https://github.com/jonschlinkert)
|
||||||
|
* [Twitter Profile](https://twitter.com/jonschlinkert)
|
||||||
|
|
||||||
|
### License
|
||||||
|
|
||||||
|
Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert).
|
||||||
|
Released under the [MIT License](LICENSE).
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on March 31, 2018._
|
31
node_modules/is-number/index.js
generated
vendored
Normal file
31
node_modules/is-number/index.js
generated
vendored
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
/*!
|
||||||
|
* is-number <https://github.com/jonschlinkert/is-number>
|
||||||
|
*
|
||||||
|
* Copyright (c) 2014-2018, Jon Schlinkert.
|
||||||
|
* Released under the MIT License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
module.exports = function isNumber(num) {
|
||||||
|
var number = +num;
|
||||||
|
|
||||||
|
if ((number - number) !== 0) {
|
||||||
|
// Discard Infinity and NaN
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (number === num) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof num === 'string') {
|
||||||
|
// String parsed, both a non-empty whitespace string and an empty string
|
||||||
|
// will have been coerced to 0. If 0 trim the string and see if its empty.
|
||||||
|
if (number === 0 && num.trim() === '') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
};
|
75
node_modules/is-number/package.json
generated
vendored
Normal file
75
node_modules/is-number/package.json
generated
vendored
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
{
|
||||||
|
"name": "is-number",
|
||||||
|
"description": "Returns true if the value is a number. comprehensive tests.",
|
||||||
|
"version": "6.0.0",
|
||||||
|
"homepage": "https://github.com/jonschlinkert/is-number",
|
||||||
|
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
||||||
|
"contributors": [
|
||||||
|
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
|
||||||
|
"Olsten Larck (https://i.am.charlike.online)",
|
||||||
|
"Rouven Weßling (www.rouvenwessling.de)"
|
||||||
|
],
|
||||||
|
"repository": "jonschlinkert/is-number",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/jonschlinkert/is-number/issues"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"files": [
|
||||||
|
"index.js"
|
||||||
|
],
|
||||||
|
"main": "index.js",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=0.10.0"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "mocha"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"benchmarked": "^2.0.0",
|
||||||
|
"chalk": "^2.1.0",
|
||||||
|
"gulp-format-md": "^1.0.0",
|
||||||
|
"mocha": "^3.0.1"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"check",
|
||||||
|
"coerce",
|
||||||
|
"coercion",
|
||||||
|
"integer",
|
||||||
|
"is",
|
||||||
|
"is-nan",
|
||||||
|
"is-num",
|
||||||
|
"is-number",
|
||||||
|
"istype",
|
||||||
|
"kind",
|
||||||
|
"math",
|
||||||
|
"nan",
|
||||||
|
"num",
|
||||||
|
"number",
|
||||||
|
"numeric",
|
||||||
|
"test",
|
||||||
|
"type",
|
||||||
|
"typeof",
|
||||||
|
"value"
|
||||||
|
],
|
||||||
|
"verb": {
|
||||||
|
"toc": false,
|
||||||
|
"layout": "default",
|
||||||
|
"tasks": [
|
||||||
|
"readme"
|
||||||
|
],
|
||||||
|
"related": {
|
||||||
|
"list": [
|
||||||
|
"isobject",
|
||||||
|
"is-plain-object",
|
||||||
|
"is-primitive",
|
||||||
|
"kind-of"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"plugins": [
|
||||||
|
"gulp-format-md"
|
||||||
|
],
|
||||||
|
"lint": {
|
||||||
|
"reflinks": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
21
node_modules/is-odd/LICENSE
generated
vendored
Normal file
21
node_modules/is-odd/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2015-present, Jon Schlinkert.
|
||||||
|
|
||||||
|
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.
|
94
node_modules/is-odd/README.md
generated
vendored
Normal file
94
node_modules/is-odd/README.md
generated
vendored
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
# is-odd [![NPM version](https://img.shields.io/npm/v/is-odd.svg?style=flat)](https://www.npmjs.com/package/is-odd) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-odd.svg?style=flat)](https://npmjs.org/package/is-odd) [![NPM total downloads](https://img.shields.io/npm/dt/is-odd.svg?style=flat)](https://npmjs.org/package/is-odd) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/is-odd.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/is-odd)
|
||||||
|
|
||||||
|
> Returns true if the given number is odd, and is an integer that does not exceed the JavaScript MAXIMUM_SAFE_INTEGER.
|
||||||
|
|
||||||
|
Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
Install with [npm](https://www.npmjs.com/):
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ npm install --save is-odd
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Works with strings or numbers.
|
||||||
|
|
||||||
|
```js
|
||||||
|
const isOdd = require('is-odd');
|
||||||
|
|
||||||
|
console.log(isOdd('1')); //=> true
|
||||||
|
console.log(isOdd('3')); //=> true
|
||||||
|
|
||||||
|
console.log(isOdd(0)); //=> false
|
||||||
|
console.log(isOdd(2)); //=> false
|
||||||
|
```
|
||||||
|
|
||||||
|
## About
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Contributing</strong></summary>
|
||||||
|
|
||||||
|
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Running Tests</strong></summary>
|
||||||
|
|
||||||
|
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ npm install && npm test
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Building docs</strong></summary>
|
||||||
|
|
||||||
|
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
|
||||||
|
|
||||||
|
To generate the readme, run the following command:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ npm install -g verbose/verb#dev verb-generate-readme && verb
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
### Related projects
|
||||||
|
|
||||||
|
You might also be interested in these projects:
|
||||||
|
|
||||||
|
* [exponential-moving-average](https://www.npmjs.com/package/exponential-moving-average): Calculate an exponential moving average from an array of numbers. | [homepage](https://github.com/jonschlinkert/exponential-moving-average "Calculate an exponential moving average from an array of numbers.")
|
||||||
|
* [is-even](https://www.npmjs.com/package/is-even): Return true if the given number is even. | [homepage](https://github.com/jonschlinkert/is-even "Return true if the given number is even.")
|
||||||
|
* [sma](https://www.npmjs.com/package/sma): Calculate the simple moving average of an array. | [homepage](https://github.com/doowb/sma "Calculate the simple moving average of an array.")
|
||||||
|
|
||||||
|
### Contributors
|
||||||
|
|
||||||
|
| **Commits** | **Contributor** |
|
||||||
|
| --- | --- |
|
||||||
|
| 20 | [jonschlinkert](https://github.com/jonschlinkert) |
|
||||||
|
| 2 | [dym-sh](https://github.com/dym-sh) |
|
||||||
|
| 1 | [Semigradsky](https://github.com/Semigradsky) |
|
||||||
|
| 1 | [realityking](https://github.com/realityking) |
|
||||||
|
|
||||||
|
### Author
|
||||||
|
|
||||||
|
**Jon Schlinkert**
|
||||||
|
|
||||||
|
* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
|
||||||
|
* [GitHub Profile](https://github.com/jonschlinkert)
|
||||||
|
* [Twitter Profile](https://twitter.com/jonschlinkert)
|
||||||
|
|
||||||
|
### License
|
||||||
|
|
||||||
|
Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert).
|
||||||
|
Released under the [MIT License](LICENSE).
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on May 31, 2018._
|
25
node_modules/is-odd/index.js
generated
vendored
Normal file
25
node_modules/is-odd/index.js
generated
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
/*!
|
||||||
|
* is-odd <https://github.com/jonschlinkert/is-odd>
|
||||||
|
*
|
||||||
|
* Copyright (c) 2015-2017, Jon Schlinkert.
|
||||||
|
* Released under the MIT License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
const isNumber = require('is-number');
|
||||||
|
|
||||||
|
module.exports = function isOdd(value) {
|
||||||
|
const n = Math.abs(value);
|
||||||
|
if (!isNumber(n)) {
|
||||||
|
throw new TypeError('expected a number');
|
||||||
|
}
|
||||||
|
if (!Number.isInteger(n)) {
|
||||||
|
throw new Error('expected an integer');
|
||||||
|
}
|
||||||
|
if (!Number.isSafeInteger(n)) {
|
||||||
|
throw new Error('value exceeds maximum safe integer');
|
||||||
|
}
|
||||||
|
return (n % 2) === 1;
|
||||||
|
};
|
||||||
|
|
67
node_modules/is-odd/package.json
generated
vendored
Normal file
67
node_modules/is-odd/package.json
generated
vendored
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
{
|
||||||
|
"name": "is-odd",
|
||||||
|
"description": "Returns true if the given number is odd, and is an integer that does not exceed the JavaScript MAXIMUM_SAFE_INTEGER.",
|
||||||
|
"version": "3.0.1",
|
||||||
|
"homepage": "https://github.com/jonschlinkert/is-odd",
|
||||||
|
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
||||||
|
"contributors": [
|
||||||
|
"Dmitry Semigradsky (http://brainstorage.me/semigradsky)",
|
||||||
|
"DYM (https://dym.sh)",
|
||||||
|
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
|
||||||
|
"Rouven Weßling (www.rouvenwessling.de)"
|
||||||
|
],
|
||||||
|
"repository": "jonschlinkert/is-odd",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/jonschlinkert/is-odd/issues"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"files": [
|
||||||
|
"index.js"
|
||||||
|
],
|
||||||
|
"main": "index.js",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=4"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "mocha"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"is-number": "^6.0.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"gulp-format-md": "^1.0.0",
|
||||||
|
"mocha": "^3.5.3"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"array",
|
||||||
|
"count",
|
||||||
|
"even",
|
||||||
|
"filter",
|
||||||
|
"integer",
|
||||||
|
"is",
|
||||||
|
"math",
|
||||||
|
"numeric",
|
||||||
|
"odd",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"verb": {
|
||||||
|
"toc": false,
|
||||||
|
"layout": "default",
|
||||||
|
"tasks": [
|
||||||
|
"readme"
|
||||||
|
],
|
||||||
|
"plugins": [
|
||||||
|
"gulp-format-md"
|
||||||
|
],
|
||||||
|
"related": {
|
||||||
|
"list": [
|
||||||
|
"exponential-moving-average",
|
||||||
|
"is-even",
|
||||||
|
"sma"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"lint": {
|
||||||
|
"reflinks": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
11
package.json
Normal file
11
package.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"name": "nocode",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"main": "index.js",
|
||||||
|
"repository": "https://github.com/mdccg/nocode.git",
|
||||||
|
"author": "Matheus Comparotto <matheusdanielgomess@gmail.com>",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"is-odd": "^3.0.1"
|
||||||
|
}
|
||||||
|
}
|
15
yarn.lock
Normal file
15
yarn.lock
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||||
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
|
is-number@^6.0.0:
|
||||||
|
version "6.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/is-number/-/is-number-6.0.0.tgz#e6d15ad31fc262887cccf217ae5f9316f81b1995"
|
||||||
|
integrity sha512-Wu1VHeILBK8KAWJUAiSZQX94GmOE45Rg6/538fKwiloUu21KncEkYGPqob2oSZ5mUT73vLGrHQjKw3KMPwfDzg==
|
||||||
|
|
||||||
|
is-odd@^3.0.1:
|
||||||
|
version "3.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-3.0.1.tgz#65101baf3727d728b66fa62f50cda7f2d3989601"
|
||||||
|
integrity sha512-CQpnWPrDwmP1+SMHXZhtLtJv90yiyVfluGsX5iNCVkrhQtU3TQHsUWPG9wkdk9Lgd5yNpAg9jQEo90CBaXgWMA==
|
||||||
|
dependencies:
|
||||||
|
is-number "^6.0.0"
|
Loading…
Reference in New Issue
Block a user