UNPKG

@arrows/array

Version:
13 lines (12 loc) 295 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.rest_ = void 0; /** * Creates new array without the first element. * * @param arr Initial array * @returns New array */ const rest_ = (arr) => arr.slice(1); exports.rest_ = rest_; exports.default = rest_;