Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

esnext.map.update-or-insert.js 408B

1234567891011
  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.updateOrInsert` method (replaced by `Map.prototype.emplace`)
  7. // https://github.com/thumbsupep/proposal-upsert
  8. $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
  9. updateOrInsert: $upsert
  10. });