blob: 03ef7a7d900a18da72d7cf7bd93b5584504bc739 (
plain)
1
2
3
4
5
6
7
8
|
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;
};
|