UNPKG

@arrows/array

Version:
13 lines (12 loc) 295 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.first_ = void 0; /** * Retrieves the first element of the array. * * @param arr Initial array * @returns First element */ const first_ = (arr) => arr[0]; exports.first_ = first_; exports.default = first_;