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
Hi, davidchambers, Can named arguments, object keys with spaces ('avg val') or special characters (#, _ etc) be supported?
var user = {name: "Dolly", age: 24, 'in co': 23, '#':1} undefined "{name} - {age}".format(user) "Dolly - 24" "{name} - {age} - {in co}".format(user) "Dolly - 24 - {in co}" "{name} - {age} - {#}".format(user) "Dolly - 24 - {#}"
The text was updated successfully, but these errors were encountered:
This is supported in the mini-language branch. One of these days I should merge #2!
mini-language
Sorry, something went wrong.
Look forward to it. Thanks.
Hi, Awesome work!
One of these days I should merge #2!
There ware quite long days, could you merge it? Python format mini-language in JS – its incredible!
No branches or pull requests
Hi, davidchambers,
Can named arguments, object keys with spaces ('avg val') or special characters (#, _ etc) be supported?
The text was updated successfully, but these errors were encountered: