We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Am i missing something or there are some iterating errors. I see in some places in limestone.js following JS syntax:
for (var filter in query.filters) { request.push.int32(filter.attr.length); ...
I think it should be at least like this:
for (var filter in query.filters) { filter = query.filters[filter]; request.push.int32(filter.attr.length); ...
Since when iterating using for(var X in arr) returns X directly as object and not key?
for(var X in arr)
Probably same is in this line 301:
for (var value in filter.values) { request.push.int64(0, value)
The text was updated successfully, but these errors were encountered:
Yes, these are errors (kind of hard to avoid when porting from PHP - some PHP foreach syntax leaks in automatically :))
foreach
Sorry, something went wrong.
No branches or pull requests
Am i missing something or there are some iterating errors.
I see in some places in limestone.js following JS syntax:
I think it should be at least like this:
Since when iterating using
for(var X in arr)
returns X directly as object and not key?Probably same is in this line 301:
The text was updated successfully, but these errors were encountered: