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 a9a36b56_7e94_7ba9_cb03_f0a329430fd9["normal_path()"] 03862f32_0dc6_e03e_d1bf_0af2da8f3748["walk_collect()"] 03862f32_0dc6_e03e_d1bf_0af2da8f3748 -->|calls| a9a36b56_7e94_7ba9_cb03_f0a329430fd9 5baffb89_3552_88eb_f38c_51215b162072["walk_collect_parallel()"] 5baffb89_3552_88eb_f38c_51215b162072 -->|calls| a9a36b56_7e94_7ba9_cb03_f0a329430fd9 style a9a36b56_7e94_7ba9_cb03_f0a329430fd9 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