blob: 562c11ea459dce1e8353aba68f9fc56328498773 [file] [log] [blame]
var some = require('../array/virtual/some');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.some;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.some) ? some : own;
};