github-pages-deploy-action/node_modules/graphql/polyfills/find.mjs

15 lines
355 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
/* 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;