Sha256: 07ce2a0cb52532b7b24d6174295735a6f91140e888268e5d3628144bcb2842bf

Contents?: true

Size: 1.05 KB

Versions: 273

Compression:

Stored size: 1.05 KB

Contents

var baseIteratee = require('./_baseIteratee'),
    basePullAll = require('./_basePullAll');

/**
 * This method is like `_.pullAll` except that it accepts `iteratee` which is
 * invoked for each element of `array` and `values` to generate the criterion
 * by which they're compared. The iteratee is invoked with one argument: (value).
 *
 * **Note:** Unlike `_.differenceBy`, this method mutates `array`.
 *
 * @static
 * @memberOf _
 * @since 4.0.0
 * @category Array
 * @param {Array} array The array to modify.
 * @param {Array} values The values to remove.
 * @param {Function} [iteratee=_.identity] The iteratee invoked per element.
 * @returns {Array} Returns `array`.
 * @example
 *
 * var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }];
 *
 * _.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x');
 * console.log(array);
 * // => [{ 'x': 2 }]
 */
function pullAllBy(array, values, iteratee) {
  return (array && array.length && values && values.length)
    ? basePullAll(array, values, baseIteratee(iteratee, 2))
    : array;
}

module.exports = pullAllBy;

Version data entries

273 entries across 271 versions & 29 rubygems

Version Path
immosquare-cleaner-0.1.60 node_modules/lodash/pullAllBy.js
immosquare-cleaner-0.1.59 node_modules/lodash/pullAllBy.js
immosquare-cleaner-0.1.58 node_modules/lodash/pullAllBy.js
immosquare-cleaner-0.1.57 node_modules/lodash/pullAllBy.js
immosquare-cleaner-0.1.56 node_modules/lodash/pullAllBy.js
immosquare-cleaner-0.1.55 node_modules/lodash/pullAllBy.js
immosquare-cleaner-0.1.54 node_modules/lodash/pullAllBy.js
immosquare-cleaner-0.1.53 node_modules/lodash/pullAllBy.js
immosquare-cleaner-0.1.52 node_modules/lodash/pullAllBy.js
trusty-cms-6.3.1 node_modules/lodash/pullAllBy.js
immosquare-cleaner-0.1.51 node_modules/lodash/pullAllBy.js
boring_generators-0.15.0 tmp/templates/app_template/node_modules/lodash/pullAllBy.js
clapton-0.0.26 lib/clapton/javascripts/node_modules/lodash/pullAllBy.js
clapton-0.0.25 lib/clapton/javascripts/node_modules/lodash/pullAllBy.js
immosquare-cleaner-0.1.50 node_modules/lodash/pullAllBy.js
clapton-0.0.24 lib/clapton/javascripts/node_modules/lodash/pullAllBy.js
clapton-0.0.23 lib/clapton/javascripts/node_modules/lodash/pullAllBy.js
clapton-0.0.22 lib/clapton/javascripts/node_modules/lodash/pullAllBy.js
clapton-0.0.21 lib/clapton/javascripts/node_modules/lodash/pullAllBy.js
clapton-0.0.20 lib/clapton/javascripts/node_modules/lodash/pullAllBy.js