mirror of
https://github.com/musix-org/musix-oss
synced 2024-12-23 19:23:18 +00:00
19 lines
666 B
JavaScript
19 lines
666 B
JavaScript
|
'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;
|
||
|
}
|
||
|
});
|