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
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/*! Icinga Web 2 | (c) 2019 Icinga GmbH | GPLv2+ */
;(function (Icinga) {
;(function(Icinga) {
'use strict';
@ -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);
});
},