UNPKG

@tommymynnson/lotide

Version:

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

9 lines (8 loc) 144 B
const head = (anArray) => { if (anArray.length === 0) { return undefined; } else { return anArray[0]; } }; module.exports = head;