Home

facebook/react

Status:Indexed
Analyzed 3d ago240K+ starsJavaScript

The library for web and native user interfaces.

Back to Pull Requests
#35016Open
Simple Review

Make `detachDeletedInstance` 30% faster

by MrFlashAccountOct 30, 2025
View on GitHub

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