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