mirror of
https://github.com/idanoo/GoScrobble
synced 2025-06-30 21:22:18 +00:00
10 lines
328 B
JavaScript
10 lines
328 B
JavaScript
'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
|
|
});
|