aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/fn/map/of.js
blob: f23b459c97945b97d1f26b8b4319ef8b16bd6594 (plain)
1
2
3
4
5
6
7
8
'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);
};