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
This probably needs a test case to confirm, but the thinking is that cached data will be re-used for the same object repeatedly:
react-resolver/src/Resolver.js Lines 114 to 122 in 6c964c8 cached(resolver = this) { const id = resolver[ID]; if (this.props.data.hasOwnProperty(id)) { return { ...this.props.data[id] }; } else if (this.context.resolver) { return this.context.resolver.cached(resolver); } }
react-resolver/src/Resolver.js
Lines 114 to 122 in 6c964c8
The text was updated successfully, but these errors were encountered:
This could negate the need for #73 since data isn't stored after resolution.
Sorry, something went wrong.
No branches or pull requests
This probably needs a test case to confirm, but the thinking is that cached data will be re-used for the same object repeatedly:
The text was updated successfully, but these errors were encountered: