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 9d066ad9_ea6a_6b73_8a07_beba8961e765["normal_path()"] 6d03a6f0_6419_e6c7_760d_e2673e72859e["walk_collect()"] 6d03a6f0_6419_e6c7_760d_e2673e72859e -->|calls| 9d066ad9_ea6a_6b73_8a07_beba8961e765 ea3d2543_290a_4ab1_26e1_d83a2eb2bbd8["walk_collect_parallel()"] ea3d2543_290a_4ab1_26e1_d83a2eb2bbd8 -->|calls| 9d066ad9_ea6a_6b73_8a07_beba8961e765 style 9d066ad9_ea6a_6b73_8a07_beba8961e765 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
Called By
Source
Frequently Asked Questions
What does normal_path() do?
normal_path() is a function in the tailwindcss codebase.
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