UNPKG

@arrows/array

Version:
15 lines (14 loc) 378 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.toString = void 0; /** * Functional wrapper for Array.prototype.toString * * Creates a string representation of an array. * * @param arr Initial array * @returns String representation */ const toString = (arr) => arr.toString(); exports.toString = toString; exports.default = toString;