export const tail = xs => {
  if (isList(xs)) { return isEmpty(xs) ? error.emptyList(xs, tail) : xs.tail(); }
  return error.listError(xs, tail);
}