esnext.map.emplace.js 274 B

123456789
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var emplace = require('../internals/map-emplace');
  4. // `Map.prototype.emplace` method
  5. // https://github.com/thumbsupep/proposal-upsert
  6. $({ target: 'Map', proto: true, real: true, forced: true }, {
  7. emplace: emplace
  8. });