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
The styleProperties.forEach() in StyleContextStack.autopush() takes significant time for a large table of rows (i.e. 1,000 to 5,000 pages).
styleProperties.forEach()
StyleContextStack.autopush()
It's much faster (i.e. 14%) to skip creating the styleOverrideObject and just use the item itself.
styleOverrideObject
This change would break three existing tests, however, that check for the number returned rather than for specific names (or lack thereof).
The text was updated successfully, but these errors were encountered:
Fixed by PR #2733. Released in version 0.2.11.
Sorry, something went wrong.
No branches or pull requests
The
styleProperties.forEach()
inStyleContextStack.autopush()
takes significant time for a large table of rows (i.e. 1,000 to 5,000 pages).It's much faster (i.e. 14%) to skip creating the
styleOverrideObject
and just use the item itself.This change would break three existing tests, however, that check for the number returned rather than for specific names (or lack thereof).
The text was updated successfully, but these errors were encountered: