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
Iv wasn't doing great (that is, wasn't the best :-)) in the delete many rows benchmark and here are some hints about what other frameworks are doing: https://github.com/krausest/js-framework-benchmark/blob/85a6d94f31c79c75eb2d4d9bc7ce997e3dfde938/vanillajs-non-keyed/src/Main.js#L262-L284
Hint: parentNode.textContent = "" should be the fastest according to this benchmark and DOM spec: whatwg/dom#478 (comment)
parentNode.textContent = ""
The text was updated successfully, but these errors were encountered:
fix: issue #9 - faster method to delete child nodes
cc09129
Thx for the tip - I just pushed the fix on master :-)
Sorry, something went wrong.
No branches or pull requests
Iv wasn't doing great (that is, wasn't the best :-)) in the delete many rows benchmark and here are some hints about what other frameworks are doing: https://github.com/krausest/js-framework-benchmark/blob/85a6d94f31c79c75eb2d4d9bc7ce997e3dfde938/vanillajs-non-keyed/src/Main.js#L262-L284
Hint:
parentNode.textContent = ""
should be the fastest according to this benchmark and DOM spec: whatwg/dom#478 (comment)The text was updated successfully, but these errors were encountered: