storage.js: Don't return in StorageAwareMap.forEach

This commit is contained in:
Johannes Meyer 2019-07-17 12:46:14 +02:00
parent 5c290e1b68
commit cfa3af51db

View File

@ -434,7 +434,7 @@
thisArg = this;
}
return this.data.forEach(function(value, key) {
this.data.forEach(function(value, key) {
callback.call(thisArg, value['value'], key);
});
},