hz-zhhq-app/node_modules/core-js/features/map/of.js

13 lines
327 B
JavaScript
Raw Normal View History

2025-01-22 10:53:47 +08:00
'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);
};