You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Today I find the new software and have a try, met some issue.
I implement the js code with JSCover, but run the html file failed. Check the implemented JS file, I found there has some Hexadecimal numeral error, like this:
" String.fromCharCode((c1 << 2) | ((c2 & 30) >> 4) & ff)",
while it should be :
"String.fromCharCode((c1 << 2) | ((c2 & 0x30) >> 4) & 0xff)".
Could anyone give me a hand?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
Hi,
Today I find the new software and have a try, met some issue.
I implement the js code with JSCover, but run the html file failed. Check the implemented JS file, I found there has some Hexadecimal numeral error, like this:
" String.fromCharCode((c1 << 2) | ((c2 & 30) >> 4) & ff)",
while it should be :
"String.fromCharCode((c1 << 2) | ((c2 & 0x30) >> 4) & 0xff)".
Could anyone give me a hand?
Thanks in advance!
The text was updated successfully, but these errors were encountered: