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
Will we support generation functions in the future? This allows us to avoid using strings to generate template functions
The text was updated successfully, but these errors were encountered:
Hi. Can you please send add some examples for generation functions?
Sorry, something went wrong.
I'm not sure what "generation functions" mean, but I'm hoping to generate functions such as:
const myFunc = (name) => `Hello ${name}` // or { return `Hello ${name}` } function myFunc2 (name) { return `Hello ${name}` } const higherOrderFun = (func) => { return (name) => { return func(name) } } // should evaluate to (name) => { return ((n) => `Bye ${n}`)(name) } const byeFunc = higherOrderFun((n) => `Bye ${n}`)
No branches or pull requests
Will we support generation functions in the future? This allows us to avoid using strings to generate template functions
The text was updated successfully, but these errors were encountered: