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.weak-map.upsert.js 398B

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