normal_path() — tailwindcss Function Reference
Architecture documentation for the normal_path() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 063ca569_8059_e2ae_4819_c33cf4c60f59["normal_path()"] b3ca296d_790b_9bf3_23ea_56e5c5c48565["walk.rs"] 063ca569_8059_e2ae_4819_c33cf4c60f59 -->|defined in| b3ca296d_790b_9bf3_23ea_56e5c5c48565 dcd6b4af_7222_0d2a_ba97_81396acc8fb1["walk_collect()"] dcd6b4af_7222_0d2a_ba97_81396acc8fb1 -->|calls| 063ca569_8059_e2ae_4819_c33cf4c60f59 b2c4a323_8d1e_5ad8_e078_9ff6f9a27db9["walk_collect_parallel()"] b2c4a323_8d1e_5ad8_e078_9ff6f9a27db9 -->|calls| 063ca569_8059_e2ae_4819_c33cf4c60f59 style 063ca569_8059_e2ae_4819_c33cf4c60f59 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/walk.rs lines 2067–2073
fn normal_path(unix: &str) -> String {
if cfg!(windows) {
unix.replace("\\", "/")
} else {
unix.to_string()
}
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does normal_path() do?
normal_path() is a function in the tailwindcss codebase, defined in crates/ignore/src/walk.rs.
Where is normal_path() defined?
normal_path() is defined in crates/ignore/src/walk.rs at line 2067.
What calls normal_path()?
normal_path() is called by 2 function(s): walk_collect, walk_collect_parallel.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free