@inst/vscode-bin-darwin
Version:
BINARY ONLY - VSCode binary deployment for macOS
93 lines (92 loc) • 4.48 kB
JSON
{
"_args": [
[
{
"raw": "arr-flatten@https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz",
"scope": null,
"escapedName": "arr-flatten",
"name": "arr-flatten",
"rawSpec": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz",
"spec": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz",
"type": "remote"
},
"/Users/code/tfs/agent3/_work/2/s"
]
],
"_from": "arr-flatten@>=1.0.1 <2.0.0",
"_id": "arr-flatten@1.0.1",
"_inCache": true,
"_location": "/arr-flatten",
"_phantomChildren": {},
"_requested": {
"raw": "arr-flatten@https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz",
"scope": null,
"escapedName": "arr-flatten",
"name": "arr-flatten",
"rawSpec": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz",
"spec": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz",
"type": "remote"
},
"_requiredBy": [
"/",
"/arr-diff"
],
"_resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz",
"_shasum": "e5ffe54d45e19f32f216e91eb99c8ce892bb604b",
"_shrinkwrap": null,
"_spec": "arr-flatten@https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz",
"_where": "/Users/code/tfs/agent3/_work/2/s",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/jonschlinkert/arr-flatten/issues"
},
"dependencies": {},
"description": "Recursively flatten an array or arrays. This is the fastest implementation of array flatten.",
"devDependencies": {
"array-flatten": "^1.0.2",
"array-slice": "^0.2.2",
"benchmarked": "^0.1.3",
"chalk": "^0.5.1",
"glob": "^4.3.5",
"kind-of": "^1.0.0"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/jonschlinkert/arr-flatten",
"keywords": [
"arr",
"array",
"elements",
"flat",
"flatten",
"nested",
"recurse",
"recursive",
"recursively"
],
"license": {
"type": "MIT",
"url": "https://github.com/jonschlinkert/arr-flatten/blob/master/LICENSE"
},
"main": "index.js",
"name": "arr-flatten",
"optionalDependencies": {},
"readme": "# arr-flatten [](http://badge.fury.io/js/arr-flatten) [](https://travis-ci.org/jonschlinkert/arr-flatten) \n\n> Recursively flatten an array or arrays. This is the fastest implementation of array flatten.\n\nWhy another flatten utility? I wanted the fastest implementation I could find, with implementation choices that should work for 95% of use cases, but no cruft to cover the other 5%.\n\n## Run benchmarks\n\n```bash\nnpm run benchmarks\n```\n\nBenchmark results comparing this library to [array-flatten]:\n\n```bash\n#1: large.js\n arr-flatten.js x 487,030 ops/sec ±0.67% (92 runs sampled)\n array-flatten.js x 347,020 ops/sec ±0.57% (98 runs sampled)\n\n#2: medium.js\n arr-flatten.js x 1,914,516 ops/sec ±0.76% (94 runs sampled)\n array-flatten.js x 1,391,661 ops/sec ±0.63% (96 runs sampled)\n\n#3: small.js\n arr-flatten.js x 5,158,980 ops/sec ±0.85% (94 runs sampled)\n array-flatten.js x 3,683,173 ops/sec ±0.79% (97 runs sampled)\n```\n\n## Run tests\n\nInstall dev dependencies:\n\n```bash\nnpm i -d && npm test\n```\n\n## Install with [npm](npmjs.org)\n\n```bash\nnpm i arr-flatten --save\n```\n### Install with [bower](https://github.com/bower/bower)\n\n```bash\nbower install arr-flatten --save\n```\n\n\n## Usage\n\n```js\nvar flatten = require('arr-flatten');\n\nflatten(['a', ['b', ['c']], 'd', ['e']]);\n//=> ['a', 'b', 'c', 'd', 'e']\n```\n\n## Author\n\n**Jon Schlinkert**\n \n+ [github/jonschlinkert](https://github.com/jonschlinkert)\n+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert) \n\n## License\nCopyright (c) 2014-2015 Jon Schlinkert \nReleased under the MIT license\n\n***\n\n_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on March 11, 2015._\n\n[array-flatten]: https://github.com/blakeembrey/array-flatten",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/jonschlinkert/arr-flatten.git"
},
"scripts": {
"benchmarks": "node benchmark",
"test": "mocha"
},
"version": "1.0.1"
}