Closed itchyny closed 2 years ago
This PR fixes multiplying string with negative number or NaN. Also implements {num} * {str} case.
{num} * {str}
❯ jq -n '(0,3,-3,nan) * "abc"' null "abcabcabc" null null
lgtm, thank you!
This PR fixes multiplying string with negative number or NaN. Also implements
{num} * {str}
case.