hensei-web/node_modules/core-js/fn/map/of.js
2020-09-11 06:44:42 -07:00

8 lines
260 B
JavaScript

'use strict';
require('../../modules/es6.map');
require('../../modules/es7.map.of');
var $Map = require('../../modules/_core').Map;
var $of = $Map.of;
module.exports = function of() {
return $of.apply(typeof this === 'function' ? this : $Map, arguments);
};