Permalink
Cannot retrieve contributors at this time
29 lines (27 sloc)
758 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/lodash/pull.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var baseRest = require('./_baseRest'), | |
pullAll = require('./pullAll'); | |
/** | |
* 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. | |
* | |
* @static | |
* @memberOf _ | |
* @since 2.0.0 | |
* @category Array | |
* @param {Array} array The array to modify. | |
* @param {...*} [values] The values to remove. | |
* @returns {Array} Returns `array`. | |
* @example | |
* | |
* var array = ['a', 'b', 'c', 'a', 'b', 'c']; | |
* | |
* _.pull(array, 'a', 'c'); | |
* console.log(array); | |
* // => ['b', 'b'] | |
*/ | |
var pull = baseRest(pullAll); | |
module.exports = pull; |