source: node_modules/core-js-pure/modules/esnext.map.of.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 369 bytes
RevLine 
[d24f17c]1'use strict';
2var $ = require('../internals/export');
3var MapHelpers = require('../internals/map-helpers');
4var createCollectionOf = require('../internals/collection-of');
5
6// `Map.of` method
7// https://tc39.github.io/proposal-setmap-offrom/#sec-map.of
8$({ target: 'Map', stat: true, forced: true }, {
9 of: createCollectionOf(MapHelpers.Map, MapHelpers.set, true)
10});
Note: See TracBrowser for help on using the repository browser.