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.emplace.js 326B

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