mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-04 21:24:00 +01:00
37 lines
816 B
JavaScript
37 lines
816 B
JavaScript
if (!Array.prototype.findAsync) {
|
|
Array.prototype.findAsync = async function (asyncCallback) {
|
|
for (const item of this) {
|
|
if (await asyncCallback(item)) {
|
|
return item
|
|
}
|
|
}
|
|
}
|
|
if (!Array.prototype.findAllIndexes) {
|
|
Array.prototype.findAllIndexes = function (Callback) {
|
|
return this.reduce(function(a, e, i) {
|
|
if (Callback(e))
|
|
a.push(i)
|
|
return a
|
|
}, [])
|
|
}
|
|
}
|
|
if (!Array.prototype.count) {
|
|
Array.prototype.count = function (o) {
|
|
var callback
|
|
var item
|
|
if (typeof o==="function") {
|
|
callback=o
|
|
}
|
|
else {
|
|
callback=(e)=>item==e
|
|
}
|
|
return this.reduce(function(c, e, i) {
|
|
if (callback) {
|
|
if (callback(e))
|
|
c++
|
|
return c
|
|
}
|
|
},0)
|
|
}
|
|
}
|
|
} |