UNPKG

@mattseligman/lotide

Version:

Lotide is a mini clone of the Lodash Library to practice crating a personal npm package. It's like lodash, but without all that extra stuff. Just the things you need to start your project.

7 lines (5 loc) 95 B
const tail = function(array) { array.splice(0,1); return array; }; module.exports = tail;