blob: 03ef7a7d900a18da72d7cf7bd93b5584504bc739 [file] [log] [blame]
var slice = 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;
};