Home / Function/ skipUrlReplacer() — tailwindcss Function Reference

skipUrlReplacer() — tailwindcss Function Reference

Architecture documentation for the skipUrlReplacer() function in urls.ts from the tailwindcss codebase.

Function typescript NodeServer Resolver calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  fbb34b96_d176_2cf2_3b47_efa9e854e835["skipUrlReplacer()"]
  95a806ab_8556_4112_9786_fda4ff23eeca["urls.ts"]
  fbb34b96_d176_2cf2_3b47_efa9e854e835 -->|defined in| 95a806ab_8556_4112_9786_fda4ff23eeca
  d4709345_2709_57a6_d676_dab269e86182["doUrlReplace()"]
  d4709345_2709_57a6_d676_dab269e86182 -->|calls| fbb34b96_d176_2cf2_3b47_efa9e854e835
  a8ee1c5f_1015_eb00_cec1_f0852cf29016["isExternalUrl()"]
  fbb34b96_d176_2cf2_3b47_efa9e854e835 -->|calls| a8ee1c5f_1015_eb00_cec1_f0852cf29016
  583818a8_fffd_c804_1b7b_c133f386ca78["isDataUrl()"]
  fbb34b96_d176_2cf2_3b47_efa9e854e835 -->|calls| 583818a8_fffd_c804_1b7b_c133f386ca78
  style fbb34b96_d176_2cf2_3b47_efa9e854e835 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

Frequently Asked Questions

What does skipUrlReplacer() do?
skipUrlReplacer() is a function in the tailwindcss codebase, defined in packages/@tailwindcss-node/src/urls.ts.
Where is skipUrlReplacer() defined?
skipUrlReplacer() is defined in packages/@tailwindcss-node/src/urls.ts at line 153.
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