UNPKG

qq-official-bot

Version:
12 lines (11 loc) 323 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.findLastIndex = void 0; const findLastIndex = (list, predicate) => { for (let i = list.length - 1; i >= 0; i--) { if (predicate(list[i], i)) return i; } return -1; }; exports.findLastIndex = findLastIndex;