aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/features/instance/unique-by.js
blob: e5de52d7a434e7f3184e1bac8e9068c07f6cb7d1 (plain)
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;
};