amis-rpc-design/node_modules/core-js/es/instance/find-index.js

11 lines
362 B
JavaScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/find-index');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.findIndex;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.findIndex) ? method : own;
};