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
Example:
thing: { composed: { compose: 'f1 | f2' } }
If you call thing.composed(a, b, c), f1 will be called like this: f1(a), which is obviously wrong.
thing.composed(a, b, c)
f1
f1(a)
The text was updated successfully, but these errors were encountered:
Just tested this in my own code after applying the patch, and all works as designed. :)
Sorry, something went wrong.
Awesome, thanks for confirming. Closing, will be released in 0.9.1.
Fix #69. Allow compose to pass full argument list through to first fu…
7e99869
…nction
briancavalier
No branches or pull requests
Example:
If you call
thing.composed(a, b, c)
,f1
will be called like this:f1(a)
, which is obviously wrong.The text was updated successfully, but these errors were encountered: