summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/lodash/pull.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/lodash/pull.js')
-rw-r--r--tools/eslint/node_modules/lodash/pull.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/eslint/node_modules/lodash/pull.js b/tools/eslint/node_modules/lodash/pull.js
index c2f6c1e316..f5846fbc19 100644
--- a/tools/eslint/node_modules/lodash/pull.js
+++ b/tools/eslint/node_modules/lodash/pull.js
@@ -6,10 +6,12 @@ var pullAll = require('./pullAll'),
* [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)
* for equality comparisons.
*
- * **Note:** Unlike `_.without`, this method mutates `array`.
+ * **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.