UNPKG

@stewartmac/lotide

Version:

Modular collection of functions that operate on data, namely Arrays and Objects.

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