UNPKG

@mxmitch/lotide

Version:

A mini clone of the [Lodash](https://lodash.com) library.

9 lines (8 loc) 173 B
const tail = function(myArray) { let result = []; for (let i = 1; i < myArray.length; i++) { result.push(myArray[i]); } return result; }; module.exports = tail;