-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Description
Consider this JSON:
{
"size": 2,
"unsaf": false
}
The instructions paths(scalars)
yield just
[
[
"size"
]
]
Whereas one might expect it should yield
[
[
"size"
],
[
"unsaf"
]
]
A bit of poking around makes me think the problem is when false
is a value in a object.
ajasmin, carlocorradini and thalesmg