aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/esnext.weak-map.emplace.js
blob: 268f01210c50751d6bb8e288fc21e8ad085ee484 (plain)
1
2
3
4
5
6
7
8
9
10
'use strict';
var $ = require('../internals/export');
var IS_PURE = require('../internals/is-pure');
var $emplace = require('../internals/map-emplace');

// `WeakMap.prototype.emplace` method
// https://github.com/tc39/proposal-upsert
$({ target: 'WeakMap', proto: true, real: true, forced: IS_PURE }, {
  emplace: $emplace
});