Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Defaults the else clause to the identity filter "." if an else clause is missing. The following two jq programs are considered equivalent: ``` if .foo then .foo = "bar" else . end ``` ``` if .foo then .foo = "bar" end ```
- Loading branch information