Open pkoppstein opened 2 months ago
try/catch work as expected with jq and jaq, but gojq has trouble with `"\u263"':
for jq in jq jaq gojq ; do echo jq=$jq (echo '"a\u263"'; echo '"def"' ) | $jq -nr 'recurse( try inputs catch .) | select(.) | length' done jq=jq 41 3 jq=jaq 28 3 jq=gojq 105
try/catch work as expected with jq and jaq, but gojq has trouble with `"\u263"':