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
const v = new V({ debug:true }) const schema = { x: "string" } const check = v.compile(schema)
output:
SyntaxError: Unexpected token (2:10) 1 | // Context.fn[0] > 2 | function () { [native code] }
output without prettier:
// Context.fn[0] function () { [native code] } // Context.fn[1] function () { [native code] } ...
Because Function.prototype.bind is native code. Related #231
Function.prototype.bind
The text was updated successfully, but these errors were encountered:
Possible solutions:
Function.prototype.call
bind
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
output:
output without prettier:
Because
Function.prototype.bind
is native code.Related #231
The text was updated successfully, but these errors were encountered: