UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

16 lines (15 loc) 752 B
const require_isArrayLike = require("../predicate/isArrayLike.js"); const require_toInteger = require("../util/toInteger.js"); //#region src/compat/array/lastIndexOf.ts function lastIndexOf(array, searchElement, fromIndex) { if (!require_isArrayLike.isArrayLike(array) || array.length === 0) return -1; const length = array.length; let index = fromIndex === void 0 ? length - 1 : require_toInteger.toInteger(fromIndex); if (fromIndex !== void 0) index = index < 0 ? Math.max(length + index, 0) : Math.min(index, length - 1); if (Number.isNaN(searchElement)) { for (let i = index; i >= 0; i--) if (Number.isNaN(array[i])) return i; } return Array.from(array).lastIndexOf(searchElement, index); } //#endregion exports.lastIndexOf = lastIndexOf;