10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-03 18:06:06 +02:00

Add findAllIndexes Array extension

This commit is contained in:
Mickaël Véril 2020-09-24 16:56:51 +02:00
parent 414b0a3b16
commit 1119c6c9e5

View File

@ -6,4 +6,13 @@ if (!Array.prototype.findAsync) {
}
}
}
if (!Array.prototype.findAllIndexes) {
Array.prototype.findAllIndexes = function (Callback) {
this.reduce(function(a, e, i) {
if (Callback(e))
a.push(i)
return a
}, [])
}
}
}