Merge pull request #179 from maysale01/hotfix-fix-iterator-syntax-for-future-es-syntax

Hotfix: Missing variable declarations on iterators. This makes runn…
This commit is contained in:
Fosco Marotto
2016-02-02 13:51:49 -08:00
3 changed files with 4 additions and 4 deletions

View File

@@ -245,7 +245,7 @@ ExportAdapter.prototype.handleRelationUpdates = function(className,
}
if (op.__op == 'Batch') {
for (x of op.ops) {
for (var x of op.ops) {
process(x, key);
}
}