Fixed the missing variable declarations on iterators. This makes running the tests in ES6 pass!
Signed-off-by: Alexander Mays <maysale01@gmail.com>
This commit is contained in:
@@ -232,7 +232,7 @@ ExportAdapter.prototype.handleRelationUpdates = function(className,
|
||||
}
|
||||
|
||||
if (op.__op == 'Batch') {
|
||||
for (x of op.ops) {
|
||||
for (var x of op.ops) {
|
||||
process(x, key);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user