private asyncFilter = (arr, predicate) => {
return Promise.all(arr.map(predicate))
.then((results) => arr.filter((_v, index) => results[index]));
}
For further actions, you may consider blocking this person and/or reporting abuse
private asyncFilter = (arr, predicate) => {
return Promise.all(arr.map(predicate))
.then((results) => arr.filter((_v, index) => results[index]));
}
For further actions, you may consider blocking this person and/or reporting abuse
Emmanuel Ayinde -
TheDev -
Harold Defree -
Sonay Kara -
Top comments (0)