mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
22 lines
464 B
Plaintext
22 lines
464 B
Plaintext
// @flow strict
|
|
|
|
declare function find<T>(
|
|
list: $ReadOnlyArray<T>,
|
|
predicate: (item: T) => boolean,
|
|
): T | void;
|
|
|
|
/* eslint-disable no-redeclare */
|
|
// $FlowFixMe
|
|
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;
|