adocs2 / eslint-tslint-custom-rules

0 stars 1 forks source link

work work #3

Open acdcjunior opened 4 years ago

acdcjunior commented 4 years ago

https://astexplorer.net/#/gist/60e8dc9cb4d46122c43b92f77f541896/3910a9cfaad662e6e56f7a01e738769212cab1ca

acdcjunior commented 4 years ago

x == undefined -> !x
x == null -> !x
x == false -> !x
x == NaN -> !x

x != undefined -> x
x != null -> x
x != false -> x
x != NaN -> x

x == true -> x
x != true -> !x