You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
using flamecharts to investigate the performance of getPathLength, I noticed that 80% of the time is spent in the isDecimal function. Replacing it with a faster version would improve performance by a factor of 3 or 4. See this codepen: https://codepen.io/jonenst/pen/OJyeeVN
Hi,
using flamecharts to investigate the performance of getPathLength, I noticed that 80% of the time is spent in the isDecimal function. Replacing it with a faster version would improve performance by a factor of 3 or 4. See this codepen: https://codepen.io/jonenst/pen/OJyeeVN
when replacing the isDecimal function with "return true", the time to run the script goes from 6.5s to 2s: https://codepen.io/jonenst/pen/GRpbVry
The text was updated successfully, but these errors were encountered: