保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 ab4e8129d5c94ff96e6c85d0d2b66a04a052b4e5
PAMapp/node_modules/core-js/es/instance/slice.js
@@ -1,8 +1,9 @@
var slice = require('../array/virtual/slice');
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/slice');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
  var own = it.slice;
  return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.slice) ? slice : own;
  return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.slice) ? method : own;
};