amis-rpc-design/node_modules/core-js/es/instance/last-index-of.js
2023-10-07 19:42:30 +08:00

11 lines
369 B
JavaScript

'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/last-index-of');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.lastIndexOf;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.lastIndexOf) ? method : own;
};