web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
392 B

  1. 'use strict';
  2. // TODO: remove from `core-js@4`
  3. var $ = require('../internals/export');
  4. var IS_PURE = require('../internals/is-pure');
  5. var $upsert = require('../internals/map-upsert');
  6. // `Map.prototype.upsert` method (replaced by `Map.prototype.emplace`)
  7. // https://github.com/thumbsupep/proposal-upsert
  8. $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
  9. upsert: $upsert
  10. });