Initial Save
This commit is contained in:
14
node_modules/graphql/polyfills/find.mjs
generated
vendored
Normal file
14
node_modules/graphql/polyfills/find.mjs
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
/* eslint-disable no-redeclare */
|
||||
// $FlowFixMe
|
||||
var find = Array.prototype.find ? function (list, predicate) {
|
||||
return Array.prototype.find.call(list, predicate);
|
||||
} : function (list, predicate) {
|
||||
for (var _i2 = 0; _i2 < list.length; _i2++) {
|
||||
var value = list[_i2];
|
||||
|
||||
if (predicate(value)) {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
};
|
||||
export default find;
|
||||
Reference in New Issue
Block a user