root / HServer / 00.Server / 00.Program / node_modules / async / some.js
이력 | 보기 | 이력해설 | 다운로드 (1.73 KB)
1 |
'use strict';
|
---|---|
2 |
|
3 |
Object.defineProperty(exports, "__esModule", {
|
4 |
value: true |
5 |
}); |
6 |
|
7 |
var _createTester = require('./internal/createTester'); |
8 |
|
9 |
var _createTester2 = _interopRequireDefault(_createTester);
|
10 |
|
11 |
var _eachOf = require('./eachOf'); |
12 |
|
13 |
var _eachOf2 = _interopRequireDefault(_eachOf);
|
14 |
|
15 |
var _identity = require('lodash/identity'); |
16 |
|
17 |
var _identity2 = _interopRequireDefault(_identity);
|
18 |
|
19 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } |
20 |
|
21 |
/**
|
22 |
* Returns `true` if at least one element in the `coll` satisfies an async test.
|
23 |
* If any iteratee call returns `true`, the main `callback` is immediately
|
24 |
* called.
|
25 |
*
|
26 |
* @name some
|
27 |
* @static
|
28 |
* @memberOf module:Collections
|
29 |
* @method
|
30 |
* @alias any
|
31 |
* @category Collection
|
32 |
* @param {Array|Iterable|Object} coll - A collection to iterate over.
|
33 |
* @param {Function} iteratee - A truth test to apply to each item in the array
|
34 |
* in parallel. The iteratee is passed a `callback(err, truthValue)` which must
|
35 |
* be called with a boolean argument once it has completed. Invoked with
|
36 |
* (item, callback).
|
37 |
* @param {Function} [callback] - A callback which is called as soon as any
|
38 |
* iteratee returns `true`, or after all the iteratee functions have finished.
|
39 |
* Result will be either `true` or `false` depending on the values of the async
|
40 |
* tests. Invoked with (err, result).
|
41 |
* @example
|
42 |
*
|
43 |
* async.some(['file1','file2','file3'], function(filePath, callback) {
|
44 |
* fs.access(filePath, function(err) {
|
45 |
* callback(null, !err)
|
46 |
* });
|
47 |
* }, function(err, result) {
|
48 |
* // if result is true then at least one of the files exists
|
49 |
* });
|
50 |
*/
|
51 |
exports.default = (0, _createTester2.default)(_eachOf2.default, Boolean, _identity2.default); |
52 |
module.exports = exports['default'];
|