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
In pairing with folks, resourceFactory is juuust clunky enough to create a knowledge cliff in learning resources
For clarification this is the removal of resourceFactory in
resourceFactory
const Timer = resourceFactory(updateMs => { return resource(() => { setInterval(() => { /* ... */ }, updateMs); }); });
and enabling this
function Timer(updateMs) { return resource(() => { setInterval(() => { /* ... */ }, updateMs); }); }
This has the benefit of:
Sample babel Plugin: https://astexplorer.net/#/gist/1833c986a7167eba0875eaf100a11adb/fb2cb060d563818908747ea2959886c837988759
Options:
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In pairing with folks, resourceFactory is juuust clunky enough to create a knowledge cliff in learning resources
For clarification this is the removal of
resourceFactory
inand enabling this
This has the benefit of:
Sample babel Plugin: https://astexplorer.net/#/gist/1833c986a7167eba0875eaf100a11adb/fb2cb060d563818908747ea2959886c837988759
Options:
The text was updated successfully, but these errors were encountered: