Remove console log
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Fabian Stamm 2020-08-15 20:39:37 +02:00
parent c48212cc17
commit c2cea4c15a

View File

@ -573,7 +573,6 @@ export class CollectionQuery extends Query {
while (parts.length > 0) { while (parts.length > 0) {
let seg = parts.shift(); let seg = parts.shift();
console.log(data, seg, data[seg]);
d = data[seg]; d = data[seg];
if (d === undefined || d === null) break; // Undefined/Null has no other fields! if (d === undefined || d === null) break; // Undefined/Null has no other fields!
} }