Back to Pull RequestsView on GitHub
#35016Open
Simple Review
Make `detachDeletedInstance` 30% faster
by MrFlashAccount•Oct 30, 2025
Summary
This PR optimizes the `detachDeletedInstance` function by replacing the `delete` keyword with assigning `null`. This change is expected to improve performance by 2-5x, as `null` assignments are generally faster than `delete` in JavaScript.
Changes
+5 additions-5 deletions
Impact Areas
PerformanceInternal Implementation Details