Commit 20143d07 by Wes Freeman

Fixing maxDepth = 1 which actually traversed until the second level.

parent a7fa922e
......@@ -93,7 +93,7 @@ map = function() {
emit({key : key}, {type: varietyTypeOf(value)});
if (varietyCanHaveChildren(value)) {
if (varietyCanHaveChildren(value) && maxDepth > 1) {
varietyMapRecursive(key, value, 1);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment