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 d88a9d85_9d83_afcf_f958_2b91811bd8b0["normal_path()"] 8031325b_dcd2_8c49_70e7_46191ce03a79["walk.rs"] d88a9d85_9d83_afcf_f958_2b91811bd8b0 -->|defined in| 8031325b_dcd2_8c49_70e7_46191ce03a79 77464293_8635_d004_11de_25b8b6223e58["walk_collect()"] 77464293_8635_d004_11de_25b8b6223e58 -->|calls| d88a9d85_9d83_afcf_f958_2b91811bd8b0 fb932287_ecc0_560e_25fd_011eb22cd495["walk_collect_parallel()"] fb932287_ecc0_560e_25fd_011eb22cd495 -->|calls| d88a9d85_9d83_afcf_f958_2b91811bd8b0 style d88a9d85_9d83_afcf_f958_2b91811bd8b0 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