amis-rpc-design/node_modules/core-js/actual/instance/with.js
2023-10-07 19:42:30 +08:00

11 lines
354 B
JavaScript

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