UNPKG

@rahmatsaeedi/lotide

Version:

A light-weight, simplified, & minified version of Lodash library

11 lines (7 loc) 184 B
// Returns the head of an array. // Returns 'undefined' for empty array // jshint esversion: 6 const head = function(array) { return array[0]; }; module.exports = head;