massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / features / map / of.js
index 57f2a7625495bb6f1ac7a9891cd41f9f970dd40b..e2ca754e1b4a1acf2982f4f31136293a68b3d3df 100644 (file)
@@ -1,13 +1,14 @@
 'use strict';
+require('../../modules/es.array.iterator');
 require('../../modules/es.map');
-require('../../modules/es.string.iterator');
 require('../../modules/esnext.map.of');
-require('../../modules/web.dom-collections.iterator');
 var path = require('../../internals/path');
+var apply = require('../../internals/function-apply');
+var isCallable = require('../../internals/is-callable');
 
 var Map = path.Map;
 var mapOf = Map.of;
 
 module.exports = function of() {
-  return mapOf.apply(typeof this === 'function' ? this : Map, arguments);
+  return apply(mapOf, isCallable(this) ? this : Map, arguments);
 };