Closed filipsobol closed 2 weeks ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
es-toolkit | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Nov 7, 2024 9:22am |
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 99.15%. Comparing base (
67ea6bf
) to head (3a6428f
). Report is 2 commits behind head on main.
Various compatibility array functions are slow when handling large arrays, which is largely caused by unnecessary
Array.from()
calls. This PR adds a check, soArray.from()
is only called when necessary.Below are performance improvements for the
head
function. Results for other methods are similar.Before:
After: