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