summaryrefslogtreecommitdiff
path: root/school/node_modules/graphql/polyfills/find.js.flow
blob: 4ed151c901a28597e01c82b183b4ae044f60caf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// @flow strict
declare function find<T>(
  list: $ReadOnlyArray<T>,
  predicate: (item: T) => boolean,
): T | void;

/* eslint-disable no-redeclare */
// $FlowFixMe[name-already-bound]
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;