rest.js

export default function rest(array, n, guard) {
  return slice.call(array, n == null || guard ? 1 : n);
}