itchyny
itchyny
```sh ❯ jq -n '0/0' null ❯ xq -n '0/0' Error: DivModByZero ❯ jq -n '1,"",1 | normals' 1 1 ❯ xq -n '1,"",1 | normals' 1 Error: InvalidArgType("is_normal", "")...
```sh ❯ jq -n '[{"Key":"x","Value":0},{"Name":"y","Value":1}] | from_entries' { "x": 0, "y": 1 } ❯ xq -n '[{"Key":"x","Value":0},{"Name":"y","Value":1}] | from_entries' Error: ObjectIndexByNonString(null) ```
```sh ❯ jq -n '[39] | implode | @html' "'" ❯ xq -n '[39] | implode | @html' "'" ❯ jq -n '"aGVsbG8====" | @base64d' "hello" ❯ xq -n '"aGVsbG8===="...
The behavior of `ltrimstr`, `rtrimstr` is useful when trimming all the strings recursively, but not sure how many people notice this behavior. ```sh ❯ jq -n '{a:{b:"hello world",c:["hello test"]},d:"hello sample"}...
When this issue is resolved, it's useful if `fromdateiso8601` supports timezone offsets. This is also reported to jq (https://github.com/stedolan/jq/issues/1053).
I recommend to run the query against each JSON object, not collecting all the objects to a slice and run once. This way works even if the input file has...
I hope some maintainer will look into this PR, but maintenance activity of this action looks to be _stale_.
Gentle ping, any thoughts on enum support?
We should avoid changing the path as much as possible, we'll have to implement redirect for the links in other websites.
I don't think `/master/` in the path is a good name. I was just worried about the case `/dev/` for `develop` branch. But anyway, I think it's better to fix...