Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 217: Swap and adjust the boolean logic to be more JS-safe.
Reverse the bitwise not operations through a double negative. Add additional checks extra checks. There is also a ternary being used in the original code that is pointless. The logic is effectively: ``` true ?? true : false ``` Get rid of this pointless ternary.
- Loading branch information