We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug:
The calculator transformation is only applied to +, -, * and / (https://github.com/MichaelXF/js-confuser/blob/master/src/transforms/calculator.ts#L103)
+
-
*
/
However, there are a lot more operators in Javascript: %, ^, &, >>(>), <<(<), |, &&, ||, ==(=), !=(=), in, ...
%
^
&
>>(>)
<<(<)
|
&&
||
==(=)
!=(=)
in
And some unary ones: !, ~, ...
!
~
The text was updated successfully, but these errors were encountered:
Hi, thank you for noticing this. In the next update calculator will be buffed up to include these operators. And unary operators too.
Sorry, something went wrong.
Released in 1.6.0
You sure that the other binary operators are supported?
js-confuser/src/transforms/calculator.ts
Line 25 in 30e4043
No branches or pull requests
Describe the bug:
The calculator transformation is only applied to
+
,-
,*
and/
(https://github.com/MichaelXF/js-confuser/blob/master/src/transforms/calculator.ts#L103)However, there are a lot more operators in Javascript:
%
,^
,&
,>>(>)
,<<(<)
,|
,&&
,||
,==(=)
,!=(=)
,in
, ...And some unary ones:
!
,~
, ...The text was updated successfully, but these errors were encountered: