sillytavern / src /polyfill.js
Nocigar's picture
Upload 72 files
1307964 verified
raw
history blame contribute delete
286 Bytes
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 = {};