massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / features / map / of.js
1 'use strict';
2 require('../../modules/es.array.iterator');
3 require('../../modules/es.map');
4 require('../../modules/esnext.map.of');
5 var path = require('../../internals/path');
6 var apply = require('../../internals/function-apply');
7 var isCallable = require('../../internals/is-callable');
8
9 var Map = path.Map;
10 var mapOf = Map.of;
11
12 module.exports = function of() {
13   return apply(mapOf, isCallable(this) ? this : Map, arguments);
14 };