Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorForrest L Norvell <forrest@npmjs.com>2015-05-22 04:48:07 +0300
committerForrest L Norvell <forrest@npmjs.com>2015-05-22 04:48:07 +0300
commit971f92c4a4e5514217d1e4db45d1ccf71a60ff19 (patch)
tree2d04b61a565d7c4243b2a1402f9dcfd603f1c29f /node_modules
parent67b50b7667a42bb3340a660eb2e617e1a554d2d4 (diff)
async-some@1.0.2
Add ISC license file. PR-URL: https://github.com/othiym23/async-some/pull/2
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/async-some/LICENSE13
-rw-r--r--node_modules/async-some/package.json38
2 files changed, 24 insertions, 27 deletions
diff --git a/node_modules/async-some/LICENSE b/node_modules/async-some/LICENSE
new file mode 100644
index 000000000..d21147bf1
--- /dev/null
+++ b/node_modules/async-some/LICENSE
@@ -0,0 +1,13 @@
+Copyright (c) 2014-2015, Forrest L Norvell
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.
diff --git a/node_modules/async-some/package.json b/node_modules/async-some/package.json
index d32ae73fb..b7d5521e5 100644
--- a/node_modules/async-some/package.json
+++ b/node_modules/async-some/package.json
@@ -1,6 +1,6 @@
{
"name": "async-some",
- "version": "1.0.1",
+ "version": "1.0.2",
"description": "short-circuited, asynchronous version of Array.protototype.some",
"main": "some.js",
"scripts": {
@@ -8,7 +8,7 @@
},
"repository": {
"type": "git",
- "url": "https://github.com/othiym23/async-some.git"
+ "url": "git+https://github.com/othiym23/async-some.git"
},
"keywords": [
"async",
@@ -27,31 +27,15 @@
},
"homepage": "https://github.com/othiym23/async-some",
"dependencies": {
- "dezalgo": "^1.0.0"
+ "dezalgo": "^1.0.2"
},
"devDependencies": {
- "tap": "^0.4.11"
- },
- "gitHead": "e73d6d1fbc03cca5a0d54f456f39bab294a4c7b7",
- "_id": "async-some@1.0.1",
- "_shasum": "8b54f08d46f0f9babc72ea9d646c245d23a4d9e5",
- "_from": "async-some@>=1.0.1-0 <2.0.0-0",
- "_npmVersion": "1.5.0-pre",
- "_npmUser": {
- "name": "othiym23",
- "email": "ogd@aoaioxxysz.net"
- },
- "maintainers": [
- {
- "name": "othiym23",
- "email": "ogd@aoaioxxysz.net"
- }
- ],
- "dist": {
- "shasum": "8b54f08d46f0f9babc72ea9d646c245d23a4d9e5",
- "tarball": "http://registry.npmjs.org/async-some/-/async-some-1.0.1.tgz"
- },
- "directories": {},
- "_resolved": "https://registry.npmjs.org/async-some/-/async-some-1.0.1.tgz",
- "readme": "ERROR: No README data found!"
+ "tap": "^1.1.0"
+ },
+ "readme": "# some\n\nShort-circuited async Array.prototype.some implementation.\n\nSerially evaluates a list of values from a JS array or arraylike\nagainst an asynchronous predicate, terminating on the first truthy\nvalue. If the predicate encounters an error, pass it to the completion\ncallback. Otherwise, pass the truthy value passed by the predicate, or\n`false` if no truthy value was passed.\n\nIs\n[Zalgo](http://blog.izs.me/post/59142742143/designing-apis-for-asynchrony)-proof,\nbrowser-safe, and pretty efficient.\n\n## Usage\n\n```javascript\nvar some = require(\"async-some\");\nvar resolve = require(\"path\").resolve;\nvar stat = require(\"fs\").stat;\nvar readFileSync = require(\"fs\").readFileSync;\n\nsome([\"apple\", \"seaweed\", \"ham\", \"quince\"], porkDetector, function (error, match) {\n if (error) return console.error(error);\n\n if (match) return console.dir(JSON.parse(readFileSync(match)));\n\n console.error(\"time to buy more Sporkleā„¢!\");\n});\n\nvar PREFIX = resolve(__dirname, \"../pork_store\");\nfunction porkDetector(value, cb) {\n var path = resolve(PREFIX, value + \".json\");\n stat(path, function (er, stat) {\n if (er) {\n if (er.code === \"ENOENT\") return cb(null, false);\n\n return cb(er);\n }\n\n cb(er, path);\n });\n}\n```\n\n### some(list, test, callback)\n\n* `list` {Object} An arraylike (either an Array or the arguments arraylike) to\n be checked.\n* `test` {Function} The predicate against which the elements of `list` will be\n tested. Takes two parameters:\n * `element` {any} The element of the list to be tested.\n * `callback` {Function} The continuation to be called once the test is\n complete. Takes (again) two values:\n * `error` {Error} Any errors that the predicate encountered.\n * `value` {any} A truthy value. A non-falsy result terminates checking the\n entire list.\n* `callback` {Function} The callback to invoke when either a value has been\n found or the entire input list has been processed with no result. Is invoked\n with the traditional two parameters:\n * `error` {Error} Errors that were encountered during the evaluation of some().\n * `match` {any} Value successfully matched by `test`, if any.\n",
+ "readmeFilename": "README.md",
+ "gitHead": "3a5086ad54739c48b2bbf073f23bcc95658199e3",
+ "_id": "async-some@1.0.2",
+ "_shasum": "4d8a81620d5958791b5b98f802d3207776e95509",
+ "_from": "async-some@>=1.0.2 <1.1.0"
}