motion
Version:
motion - moving development forward
72 lines (71 loc) • 2.63 kB
JSON
{
"_args": [
[
"array-differ@https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
"/Users/nw/flint/packages/flint"
]
],
"_from": "array-differ@>=1.0.0 <2.0.0",
"_id": "array-differ@1.0.0",
"_inCache": true,
"_location": "/array-differ",
"_phantomChildren": {},
"_requested": {
"name": "array-differ",
"raw": "array-differ@https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
"rawSpec": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
"scope": null,
"spec": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
"type": "remote"
},
"_requiredBy": [
"/gulp-util",
"/multimatch"
],
"_resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
"_shasum": "eff52e3758249d33be402b8bb8e564bb2b5d4031",
"_shrinkwrap": null,
"_spec": "array-differ@https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
"_where": "/Users/nw/flint/packages/flint",
"author": {
"email": "sindresorhus@gmail.com",
"name": "Sindre Sorhus",
"url": "http://sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/array-differ/issues"
},
"dependencies": {},
"description": "Create an array with values that are present in the first input array but not additional ones",
"devDependencies": {
"mocha": "*"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/sindresorhus/array-differ#readme",
"keywords": [
"array",
"diff",
"differ",
"difference",
"exclude",
"filter"
],
"license": "MIT",
"name": "array-differ",
"optionalDependencies": {},
"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",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/array-differ.git"
},
"scripts": {
"test": "mocha"
},
"version": "1.0.0"
}