source: imaps-frontend/node_modules/lodash-es/tail.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 455 bytes
RevLine 
[d565449]1import baseSlice from './_baseSlice.js';
2
3/**
4 * Gets all but the first element of `array`.
5 *
6 * @static
7 * @memberOf _
8 * @since 4.0.0
9 * @category Array
10 * @param {Array} array The array to query.
11 * @returns {Array} Returns the slice of `array`.
12 * @example
13 *
14 * _.tail([1, 2, 3]);
15 * // => [2, 3]
16 */
17function tail(array) {
18 var length = array == null ? 0 : array.length;
19 return length ? baseSlice(array, 1, length) : [];
20}
21
22export default tail;
Note: See TracBrowser for help on using the repository browser.