DigitalConsumer.FixMyGlass/node_modules/core-js/features/map/of.js
2021-09-20 18:29:11 -04:00

12 lines
327 B
JavaScript

'use strict';
require('../../modules/es.array.iterator');
require('../../modules/es.map');
require('../../modules/esnext.map.of');
var path = require('../../internals/path');
var Map = path.Map;
var mapOf = Map.of;
module.exports = function of() {
return mapOf.apply(typeof this === 'function' ? this : Map, arguments);
};