mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-09 02:17:50 +00:00
Remove references to _.
This commit is contained in:
3
tail.js
3
tail.js
@@ -4,14 +4,13 @@ import baseSlice from './_baseSlice.js';
|
||||
* Gets all but the first element of `array`.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
* @since 4.0.0
|
||||
* @category Array
|
||||
* @param {Array} array The array to query.
|
||||
* @returns {Array} Returns the slice of `array`.
|
||||
* @example
|
||||
*
|
||||
* _.tail([1, 2, 3]);
|
||||
* tail([1, 2, 3]);
|
||||
* // => [2, 3]
|
||||
*/
|
||||
function tail(array) {
|
||||
|
||||
Reference in New Issue
Block a user