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
Projects like Deno and Hermes can print Set objects in a useful representation:
$ deno > new Set([10, 20]) Set { 10, 20 }
$ hermes-repl >> new Set([10, 20]) Set { 10, 20 }
However XST output is of limited usefulness:
$ cat one.js const e1 = new Set([10, 20]); print(e1); $ xst -s one.js [object Set]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Projects like Deno and Hermes can print Set objects in a useful representation:
However XST output is of limited usefulness:
The text was updated successfully, but these errors were encountered: