UNPKG

@arrows/array

Version:
13 lines (12 loc) 300 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.size_ = void 0; /** * Retrieves the size (length) of the array. * * @param arr Initial array * @returns Array size (length) */ const size_ = (arr) => arr.length; exports.size_ = size_; exports.default = size_;