esnext.map.from.js 257 B

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