massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / features / instance / unique-by.js
index e5de52d7a434e7f3184e1bac8e9068c07f6cb7d1..55835077fd314f08c86901de6ea9e7f880a8a2f9 100644 (file)
@@ -1,8 +1,9 @@
-var uniqueBy = require('../array/virtual/unique-by');
+var isPrototypeOf = require('../../internals/object-is-prototype-of');
+var method = 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;
+  return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.uniqueBy) ? method : own;
 };