This extension automatically swaps the logic in a ternary expression for you. It will preserve formatting/whitespace if included.
Supports nested ternaries. ? and : are ignored in strings. // and /* */ comments are ignored. It will show an error if the ternary won't resolve (unbalanced if/then, unterminated string).
- Highlight ternary (nothing after the ternary except a
;or formatting) - Hit ⇧⌥s (
shift + alt + s)
- Comments are grouped with the condition that precedes them, so they will not switch with the true/false cases.
- better handling for quotes, braces, parens, JSX
- rewrite for author's sanity
- Add support for Typscript
?.operator - Ignore
//and/* */comments (fix single quotes in comments breaking parse)
Add keyboard shortcut
Initial release

