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; };