mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-11-26 05:49:24 +00:00
21 lines
485 B
Plaintext
21 lines
485 B
Plaintext
// @flow strict
|
|
declare function find<T>(
|
|
list: $ReadOnlyArray<T>,
|
|
predicate: (item: T) => boolean,
|
|
): T | void;
|
|
|
|
/* eslint-disable no-redeclare */
|
|
// $FlowFixMe[name-already-bound]
|
|
const find = Array.prototype.find
|
|
? function (list, predicate) {
|
|
return Array.prototype.find.call(list, predicate);
|
|
}
|
|
: function (list, predicate) {
|
|
for (const value of list) {
|
|
if (predicate(value)) {
|
|
return value;
|
|
}
|
|
}
|
|
};
|
|
export default find;
|