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
You should be able to return JQuery Terminal instance from the interpreter
The return value should be ignored
I think that this was working. So you can have code that early return:
$('body').terminal({ test(x = null) { if (!x) { return this.error('x is required'); } this.echo(x); } }, { checkArity: false });
This regression probably happened when echo started accepting jQuery objects.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue summary
You should be able to return JQuery Terminal instance from the interpreter
Expected behavior
The return value should be ignored
Steps to reproduce
Browser and OS
Additional notes
I think that this was working. So you can have code that early return:
This regression probably happened when echo started accepting jQuery objects.
The text was updated successfully, but these errors were encountered: