debian-mirror-gitlab/core-js/es/instance/some.js
2019-09-25 13:30:05 +05:30

8 lines
243 B
JavaScript

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;
};