Array.prototype.find = function()

in transforms/utils/array-polyfills.js [39:45]


  Array.prototype.find = function(predicate, context) {
    if (this == null) {
      throw new TypeError('Array.prototype.find called on null or undefined');
    }
    var index = findIndex.call(this, predicate, context);
    return index === -1 ? undefined : this[index];
  };