mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-03-02 19:07:40 +01:00
11 lines
286 B
JavaScript
11 lines
286 B
JavaScript
if (!Array.prototype.findLastIndex) {
|
|
Array.prototype.findLastIndex = function (callback, thisArg) {
|
|
for (let i = this.length - 1; i >= 0; i--) {
|
|
if (callback.call(thisArg, this[i], i, this)) return i;
|
|
}
|
|
return -1;
|
|
};
|
|
}
|
|
|
|
module.exports = {};
|