blob: 5b907f4b3f49ce199cb9e0ca9f34df50ce0f6fcd (
plain)
1
2
3
4
5
6
7
8
|
var splice = require('../array/virtual/splice');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.splice;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.splice) ? splice : own;
};
|