import checkArray from "./_checkArray"; const head = (ar) => { checkArray(ar); const [head, ...rest] = ar; return head; };