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 numerous places across the project, standard JS objects are used instead of Maps for Map like data structures.
Maps offer better performance over objects-as-maps, and can be done in places like callback storage (ie object.callbacks[id] = cb;) type patterns.
cote/src/components/time-balanced-requester.js
Line 12 in 8ad0155
cote/src/components/pending-balanced-requester.js
Line 36 in ac31387
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In numerous places across the project, standard JS objects are used instead of Maps for Map like data structures.
Maps offer better performance over objects-as-maps, and can be done in places like callback storage (ie object.callbacks[id] = cb;) type patterns.
cote/src/components/time-balanced-requester.js
Line 12 in 8ad0155
cote/src/components/pending-balanced-requester.js
Line 36 in ac31387
The text was updated successfully, but these errors were encountered: