unique-by.js 264 B

12345678
  1. var uniqueBy = require('../array/virtual/unique-by');
  2. var ArrayPrototype = Array.prototype;
  3. module.exports = function (it) {
  4. var own = it.uniqueBy;
  5. return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.uniqueBy) ? uniqueBy : own;
  6. };