Initial Save
This commit is contained in:
21
node_modules/graphql/polyfills/find.js.flow
generated
vendored
Normal file
21
node_modules/graphql/polyfills/find.js.flow
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
// @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;
|
||||
Reference in New Issue
Block a user