diff options
Diffstat (limited to 'alarm/node_modules/graphql/polyfills/find.mjs')
-rw-r--r-- | alarm/node_modules/graphql/polyfills/find.mjs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/alarm/node_modules/graphql/polyfills/find.mjs b/alarm/node_modules/graphql/polyfills/find.mjs new file mode 100644 index 0000000..ed3e6f3 --- /dev/null +++ b/alarm/node_modules/graphql/polyfills/find.mjs @@ -0,0 +1,14 @@ +/* eslint-disable no-redeclare */ +// $FlowFixMe[name-already-bound] +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; |