unique-by.js 264 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 var uniqueBy = require('../array/virtual/unique-by'); var ArrayPrototype = Array.prototype; module.exports = function (it) { var own = it.uniqueBy; return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.uniqueBy) ? uniqueBy : own; };