DIR: /proc/self/root/usr/share/nodejs/core-js-pure/es/instance/ |
Current File : //proc/self/root/usr/share/nodejs/core-js-pure/es/instance/find.js |
var isPrototypeOf = require('../../internals/object-is-prototype-of'); var method = require('../array/virtual/find'); var ArrayPrototype = Array.prototype; module.exports = function (it) { var own = it.find; return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.find) ? method : own; }; |