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
It would be cool if we could use ES6 shorthand object syntax instead of pure JSON for the template string.
Example: fony -t '{ name, age, address }' should expand the template to { "name": "name", "age": "age", "address": "address" }
fony -t '{ name, age, address }'
{ "name": "name", "age": "age", "address": "address" }
And you could still do: fony -t '{ name, age, location: address }' which would expand to { "name": "name", "age": "age", "location": "address" }
fony -t '{ name, age, location: address }'
{ "name": "name", "age": "age", "location": "address" }
This would require using something a bit more involved than JSON.parse though -- perhaps esprima or acorn.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be cool if we could use ES6 shorthand object syntax instead of pure JSON for the template string.
Example:
fony -t '{ name, age, address }'
should expand the template to{ "name": "name", "age": "age", "address": "address" }
And you could still do:
fony -t '{ name, age, location: address }'
which would expand to{ "name": "name", "age": "age", "location": "address" }
This would require using something a bit more involved than JSON.parse though -- perhaps esprima or acorn.
The text was updated successfully, but these errors were encountered: