adds fixme comment about object.assign for merging

This commit is contained in:
Karl 2016-10-28 17:46:39 +02:00 committed by GitHub
parent 45ea2dfba3
commit 1bb9539530

View file

@ -10,6 +10,7 @@ function (Exception) {
}
// FIXME we could actually use Object.assign() for merging here
OptionsHelper.prototype.merge = function(options, preset) {
if(!preset && !options) {
@ -53,4 +54,4 @@ function (Exception) {
return new OptionsHelper();
});
});