blob: 5b907f4b3f49ce199cb9e0ca9f34df50ce0f6fcd [file] [log] [blame]
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;
};