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
{{ message }}
This repository was archived by the owner on Sep 16, 2019. It is now read-only.
Hi buddy:
I found a BUG which in generate.js file from line:128, that can make a critical running error!
here's the report:
bytes.push(parseInt(bits.substr(i * 8, i * 8 + 8), 2)) ; // BUG
SHOULD BE :bytes.push(parseInt(bits.substr(i * 8, 8), 2)) ; //this will works well!
Hi buddy:
I found a BUG which in generate.js file from line:128, that can make a critical running error!
here's the report:
bytes.push(parseInt(bits.substr(i * 8, i * 8 + 8), 2)) ; // BUG
SHOULD BE :bytes.push(parseInt(bits.substr(i * 8, 8), 2)) ; //this will works well!
here the Syntax:
str.substr(start[, length])