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
Please post suggestions here if you have any, thanks!
The text was updated successfully, but these errors were encountered:
Something fast and easy...
Shortcuts like:
const addEventListener = (parent, type, listener) => parent.addEventListener(type, listener) const appendChild = (parent, child) => parent.appendChild(child) const createElement = tag => document.createElement(tag) const queryCommandState = command => document.queryCommandState(command) const queryCommandValue = command => document.queryCommandValue(command) export const exec = (command, value = null) => document.execCommand(command, false, value)
could be removed :)
Sorry, something went wrong.
#108 Save about 13%
I made several optimizations in my fork, you might be interested: https://github.com/sylvainpolletvillard/spell/blob/master/spell.js
No branches or pull requests
Please post suggestions here if you have any, thanks!
The text was updated successfully, but these errors were encountered: