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
Example for things like isString():
isString()
Object.create(String.prototype)
new String()
new class extends String {}
new iframe.contentWindow.String()
{ [Symbol.toStringTag]: "String" }
new class String {}
new class String { [Symbol.toStringTag] = "String" }
new (iframe.contentWindow.eval("class String { [Symbol.toStringTag] = 'String' }"))()
@mesqueeb Thoughts on what each of these edge-cases should return?
The text was updated successfully, but these errors were encountered:
this is literally all JavaScript i've never used in my life so I don't really know or care too much tbh XD
Whatever you think is best is probably OK. I have no strong feelings as I use pretty basic JavaScript syntax in my code. Readability ftw.
Sorry, something went wrong.
No branches or pull requests
Example for things like
isString()
:Object.create(String.prototype)
new String()
new class extends String {}
new iframe.contentWindow.String()
{ [Symbol.toStringTag]: "String" }
new class String {}
new class String { [Symbol.toStringTag] = "String" }
new (iframe.contentWindow.eval("class String { [Symbol.toStringTag] = 'String' }"))()
@mesqueeb Thoughts on what each of these edge-cases should return?
The text was updated successfully, but these errors were encountered: