skipUrlReplacer() — tailwindcss Function Reference
Architecture documentation for the skipUrlReplacer() function in urls.ts from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD d4593802_02fd_3f65_9480_0870f8bce3af["skipUrlReplacer()"] 9709745c_f692_4b57_161b_4e10d26fd42b["doUrlReplace()"] 9709745c_f692_4b57_161b_4e10d26fd42b -->|calls| d4593802_02fd_3f65_9480_0870f8bce3af 1bf332c7_ee80_6f6c_e7d0_c927e59e2e2a["isExternalUrl()"] d4593802_02fd_3f65_9480_0870f8bce3af -->|calls| 1bf332c7_ee80_6f6c_e7d0_c927e59e2e2a 42f27e12_44b3_a13d_a83a_567ba6a75790["isDataUrl()"] d4593802_02fd_3f65_9480_0870f8bce3af -->|calls| 42f27e12_44b3_a13d_a83a_567ba6a75790 style d4593802_02fd_3f65_9480_0870f8bce3af fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/@tailwindcss-node/src/urls.ts lines 153–160
function skipUrlReplacer(rawUrl: string, aliases?: string[]) {
return (
isExternalUrl(rawUrl) ||
isDataUrl(rawUrl) ||
!rawUrl[0].match(/[\.a-zA-Z0-9_]/) ||
functionCallRE.test(rawUrl)
)
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does skipUrlReplacer() do?
skipUrlReplacer() is a function in the tailwindcss codebase.
What does skipUrlReplacer() call?
skipUrlReplacer() calls 2 function(s): isDataUrl, isExternalUrl.
What calls skipUrlReplacer()?
skipUrlReplacer() is called by 1 function(s): doUrlReplace.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free