change() — react Function Reference
Architecture documentation for the change() function in dangerfile.js from the react codebase.
Entity Profile
Dependency Diagram
graph TD ce8f47f2_155a_a132_f496_f077690a7b3d["change()"] 20527457_047a_c650_0c21_ce967c57b309["dangerfile.js"] ce8f47f2_155a_a132_f496_f077690a7b3d -->|defined in| 20527457_047a_c650_0c21_ce967c57b309 683b75b6_f65c_e453_ebc3_b18af16bfc7e["row()"] 683b75b6_f65c_e453_ebc3_b18af16bfc7e -->|calls| ce8f47f2_155a_a132_f496_f077690a7b3d style ce8f47f2_155a_a132_f496_f077690a7b3d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
dangerfile.js lines 72–83
function change(decimal) {
if (decimal === Infinity) {
return 'New file';
}
if (decimal === -1) {
return 'Deleted';
}
if (decimal < 0.0001) {
return '=';
}
return percentFormatter.format(decimal);
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does change() do?
change() is a function in the react codebase, defined in dangerfile.js.
Where is change() defined?
change() is defined in dangerfile.js at line 72.
What calls change()?
change() is called by 1 function(s): row.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free