Sha256: 9a64ccd4b07cec62fce014dd96031931db7329b0f9f1f3d7fd93615928fb2dac

Contents?: true

Size: 1.67 KB

Versions: 21

Compression:

Stored size: 1.67 KB

Contents

'use strict';

Object.defineProperty(exports, "__esModule", {
  value: true
});

var _reject2 = require('./internal/reject');

var _reject3 = _interopRequireDefault(_reject2);

var _eachOf = require('./eachOf');

var _eachOf2 = _interopRequireDefault(_eachOf);

var _awaitify = require('./internal/awaitify');

var _awaitify2 = _interopRequireDefault(_awaitify);

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

/**
 * The opposite of [`filter`]{@link module:Collections.filter}. Removes values that pass an `async` truth test.
 *
 * @name reject
 * @static
 * @memberOf module:Collections
 * @method
 * @see [async.filter]{@link module:Collections.filter}
 * @category Collection
 * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.
 * @param {Function} iteratee - An async truth test to apply to each item in
 * `coll`.
 * The should complete with a boolean value as its `result`.
 * Invoked with (item, callback).
 * @param {Function} [callback] - A callback which is called after all the
 * `iteratee` functions have finished. Invoked with (err, results).
 * @returns {Promise} a promise, if no callback is passed
 * @example
 *
 * async.reject(['file1','file2','file3'], function(filePath, callback) {
 *     fs.access(filePath, function(err) {
 *         callback(null, !err)
 *     });
 * }, function(err, results) {
 *     // results now equals an array of missing files
 *     createFiles(results);
 * });
 */
function reject(coll, iteratee, callback) {
  return (0, _reject3.default)(_eachOf2.default, coll, iteratee, callback);
}
exports.default = (0, _awaitify2.default)(reject, 3);
module.exports = exports['default'];

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
appmap-0.72.2 ./node_modules/async/reject.js
appmap-0.72.1 ./node_modules/async/reject.js
appmap-0.72.0 ./node_modules/async/reject.js
appmap-0.71.0 ./node_modules/async/reject.js
appmap-0.70.2 ./node_modules/async/reject.js
appmap-0.70.1 ./node_modules/async/reject.js
appmap-0.70.0 ./node_modules/async/reject.js
appmap-0.69.0 ./node_modules/async/reject.js
appmap-0.68.2 ./node_modules/async/reject.js
appmap-0.68.1 ./node_modules/async/reject.js
appmap-0.68.0 ./node_modules/async/reject.js
appmap-0.67.1 ./node_modules/async/reject.js
appmap-0.67.0 ./node_modules/async/reject.js
appmap-0.66.2 ./node_modules/async/reject.js
appmap-0.66.1 ./node_modules/async/reject.js
appmap-0.66.0 ./node_modules/async/reject.js
appmap-0.65.1 ./node_modules/async/reject.js
appmap-0.65.0 ./node_modules/async/reject.js
appmap-0.64.0 ./node_modules/async/reject.js
appmap-0.63.0 ./node_modules/async/reject.js