esnext.map.of.js 245 B

123456789
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var of = require('../internals/collection-of');
  4. // `Map.of` method
  5. // https://tc39.github.io/proposal-setmap-offrom/#sec-map.of
  6. $({ target: 'Map', stat: true, forced: true }, {
  7. of: of
  8. });