import checkArray from "./_checkArray"; const tail = (ar) => { checkArray(ar); const [ tail ] = ar.slice(-1); return tail; }; export default tail;