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