export const tail = xs => {
  if (isEmpty(xs)) { throw new EmptyListError(tail) }
  return xs.tail()
}