A simple tool used to invert conditions for all modern programming languages and frameworks! It can be used to invert if statements, ternary operators, conditional assignments and much more - in both standard code files and html templates!
Website - conditioninverter.com, Github
VS Code Extension - Marketplace, Github
This tool takes an input condition, analyzes it and produces a new condition that yields an absolute opposite result. This is illustrated by the following example:
Properties | Original condition | Result | Inverted condition | Result |
---|---|---|---|---|
dog = true, cat = false | dog && cat | false | !dog | | !cat | true |
dog = 3, cat = 2 | dog < cat | false | dog >= cat | true |
Condition Inverter supports all modern progrogramming languages and frameworks. This includes technologies that have been ranked as the most popular on the Stack Overflow Developer Survey.
Disclaimer - this tool does not currently support query, shell scripting or assembly based languages.
Open source is built by the community for the community. All contributions to this project are welcome!
Additionally, if you have any suggestions for enhancements, ideas on how to take the project further or have discovered a bug, do not hesitate to create a new issue ticket and we will look into it as soon as possible!