UNPKG

@n3okill/utils

Version:
11 lines 218 B
/** * @internal * @param arr * @returns */ export function convertToNumber(arr) { return arr.map((el) => { return isNaN(el) ? el : parseInt(el, 10); }); } //# sourceMappingURL=convertToNumber.js.map