github-pages-deploy-action/node_modules/graphql/polyfills/find.js
2020-03-06 22:45:40 -05:00

23 lines
490 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
/* 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;
}
}
};
var _default = find;
exports.default = _default;