mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 17:37:50 +00:00
Remove references to _.
This commit is contained in:
@@ -8,10 +8,9 @@ import isIndex from './_isIndex.js';
|
||||
* Removes elements from `array` corresponding to `indexes` and returns an
|
||||
* array of removed elements.
|
||||
*
|
||||
* **Note:** Unlike `_.at`, this method mutates `array`.
|
||||
* **Note:** Unlike `at`, this method mutates `array`.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
* @since 3.0.0
|
||||
* @category Array
|
||||
* @param {Array} array The array to modify.
|
||||
@@ -20,7 +19,7 @@ import isIndex from './_isIndex.js';
|
||||
* @example
|
||||
*
|
||||
* var array = ['a', 'b', 'c', 'd'];
|
||||
* var pulled = _.pullAt(array, [1, 3]);
|
||||
* var pulled = pullAt(array, [1, 3]);
|
||||
*
|
||||
* console.log(array);
|
||||
* // => ['a', 'c']
|
||||
|
||||
Reference in New Issue
Block a user