COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20201220222019/https://github.com/lodash/lodash/blob/master/pull.js
Permalink
Cannot retrieve contributors at this time
29 lines (27 sloc)
784 Bytes
import pullAll from './pullAll.js'
/**
* Removes all given values from `array` using
* [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
* for equality comparisons.
*
* **Note:** Unlike `without`, this method mutates `array`. Use `remove`
* to remove elements from an array by predicate.
*
* @since 2.0.0
* @category Array
* @param {Array } array The array to modify.
* @param {...* } [values] The values to remove.
* @returns {Array } Returns `array`.
* @see pullAll, pullAllBy, pullAllWith, pullAt, remove, reject
* @example
*
* const array = ['a', 'b', 'c', 'a', 'b', 'c']
*
* pull(array, 'a', 'c')
* console.log(array)
* // => ['b', 'b']
*/
function pull ( array , ...values ) {
return pullAll ( array , values )
}
export default pull
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.