@inst/vscode-bin-darwin
Version:
BINARY ONLY - VSCode binary deployment for macOS
77 lines (76 loc) • 3.33 kB
JSON
{
"_args": [
[
{
"raw": "async-each@https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
"scope": null,
"escapedName": "async-each",
"name": "async-each",
"rawSpec": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
"spec": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
"type": "remote"
},
"/Users/code/tfs/agent3/_work/2/s"
]
],
"_from": "async-each@>=1.0.0 <2.0.0",
"_id": "async-each@1.0.1",
"_inCache": true,
"_location": "/async-each",
"_phantomChildren": {},
"_requested": {
"raw": "async-each@https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
"scope": null,
"escapedName": "async-each",
"name": "async-each",
"rawSpec": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
"spec": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
"type": "remote"
},
"_requiredBy": [
"/",
"/chokidar"
],
"_resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
"_shasum": "19d386a1d9edc6e7c1c85d388aedbcc56d33602d",
"_shrinkwrap": null,
"_spec": "async-each@https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
"_where": "/Users/code/tfs/agent3/_work/2/s",
"author": {
"name": "Paul Miller",
"url": "http://paulmillr.com/"
},
"bugs": {
"url": "https://github.com/paulmillr/async-each/issues"
},
"dependencies": {},
"description": "No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach / map function for JavaScript.",
"devDependencies": {},
"homepage": "https://github.com/paulmillr/async-each/",
"keywords": [
"async",
"forEach",
"each",
"map",
"asynchronous",
"iteration",
"iterate",
"loop",
"parallel",
"concurrent",
"array",
"flow",
"control flow"
],
"license": "MIT",
"main": "index.js",
"name": "async-each",
"optionalDependencies": {},
"readme": "# async-each\n\nNo-bullshit, ultra-simple, 35-lines-of-code async parallel forEach function for JavaScript.\n\nWe don't need junky 30K async libs. Really.\n\nFor browsers and node.js.\n\n## Installation\n* Just include async-each before your scripts.\n* `npm install async-each` if you’re using node.js.\n* `bower install async-each` if you’re using [Bower](http://bower.io).\n\n## Usage\n\n* `each(array, iterator, callback);` — `Array`, `Function`, `(optional) Function`\n* `iterator(item, next)` receives current item and a callback that will mark the item as done. `next` callback receives optional `error, transformedItem` arguments.\n* `callback(error, transformedArray)` optionally receives first error and transformed result `Array`.\n\nNode.js:\n\n```javascript\nvar each = require('async-each');\neach(['a.js', 'b.js', 'c.js'], fs.readFile, function(error, contents) {\n if (error) console.error(error);\n console.log('Contents for a, b and c:', contents);\n});\n```\n\nBrowser:\n\n```javascript\nwindow.asyncEach(list, fn, callback);\n```\n\n## License\n\n[The MIT License](https://raw.githubusercontent.com/paulmillr/mit/master/README.md)\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/paulmillr/async-each.git"
},
"version": "1.0.1"
}