Kai Klingenberg
Kai Klingenberg
This PR implements `indices` and copies jq's derivative implementations of `index` and `rindex` according to the spec [here](https://jqlang.github.io/jq/manual/#indices). Note that jq has TODO's related to performance on said implementations, so...
These are: - [ ] `pick/1` which I believe must be implemented natively, since it involves preserving path information. - [ ] `abs/0` which is apparently trivial, though from the...
While parsing zero-padded numbers I came across this minor issue. This is a minimal example: ``` $ echo "0012" | jaq . 0 0 12 ``` Whereas jq yields just...
Hello. Thank you for making this egg. I've been using it to parse YAML and like it a lot :) I found an issue with dumping nested mappings, like the...