mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
43 lines
1.5 KiB
JSON
Executable File
43 lines
1.5 KiB
JSON
Executable File
{
|
|
"name": "array-differ",
|
|
"version": "1.0.0",
|
|
"description": "Create an array with values that are present in the first input array but not additional ones",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/sindresorhus/array-differ"
|
|
},
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "http://sindresorhus.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"keywords": [
|
|
"array",
|
|
"difference",
|
|
"diff",
|
|
"differ",
|
|
"filter",
|
|
"exclude"
|
|
],
|
|
"devDependencies": {
|
|
"mocha": "*"
|
|
},
|
|
"readme": "# array-differ [](https://travis-ci.org/sindresorhus/array-differ)\n\n> Create an array with values that are present in the first input array but not additional ones\n\n\n## Install\n\n```sh\n$ npm install --save array-differ\n```\n\n\n## Usage\n\n```js\nvar arrayDiffer = require('array-differ');\n\narrayDiffer([2, 3, 4], [3, 50]);\n//=> [2, 4]\n```\n\n## API\n\n### arrayDiffer(input, values, [values, ...])\n\nReturns the new array.\n\n#### input\n\nType: `array`\n\n#### values\n\nType: `array`\n\nArrays of values to exclude.\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
|
|
"readmeFilename": "readme.md",
|
|
"bugs": {
|
|
"url": "https://github.com/sindresorhus/array-differ/issues"
|
|
},
|
|
"_id": "array-differ@1.0.0",
|
|
"_from": "array-differ@^1.0.0"
|
|
}
|