-
Type: Bug
-
Resolution: Done
-
Priority: Minor - P4
-
Affects Version/s: None
-
Component/s: JavaScript
-
None
situation jeff ran into:
doing a where clause that starts with a newline
db.test.find().where("""
this.x < 2 ||
this.x > 40""")
returns no results even when the almost equivalent case
db.test.find().where("""this.x < 2 ||
this.x > 40""")
does.