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
The following piece of code works as expected:
let t = Number.tainted(42); typeof t // number t.taint // returns taint object let t2 = Number(t); typeof t2 // number t2.taint // returns same taint object
However, if we do the following:
t = Number.tainted(42); typeof t // number t.taint // returns taint object let t3 = Number(t); typeof t3 // object t3.taint // returns null
This does not seem like the desired behavior and might be the root cause for #218.
The text was updated successfully, but these errors were encountered:
leeN
No branches or pull requests
The following piece of code works as expected:
However, if we do the following:
This does not seem like the desired behavior and might be the root cause for #218.
The text was updated successfully, but these errors were encountered: