1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-12-23 19:23:18 +00:00
musix-oss/node_modules/core-js/modules/esnext.map.update-or-insert.js

19 lines
666 B
JavaScript
Raw Normal View History

2019-10-10 13:43:04 +00:00
'use strict';
var $ = require('../internals/export');
var IS_PURE = require('../internals/is-pure');
var anObject = require('../internals/an-object');
var aFunction = require('../internals/a-function');
// `Set.prototype.updateOrInsert` method
// https://docs.google.com/presentation/d/1_xtrGSoN1-l2Q74eCXPHBbbrBHsVyqArWN0ebnW-pVQ/
$({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
updateOrInsert: function updateOrInsert(key, onUpdate, onInsert) {
var map = anObject(this);
aFunction(onUpdate);
aFunction(onInsert);
var value = map.has(key) ? onUpdate(map.get(key)) : onInsert();
map.set(key, value);
return value;
}
});