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 NodeBridge Compiler calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  a1913d05_1c71_5b7d_a56a_6addaacebefe["skipUrlReplacer()"]
  5e3855e0_f04e_28ee_98ea_8502e6531bc8["urls.ts"]
  a1913d05_1c71_5b7d_a56a_6addaacebefe -->|defined in| 5e3855e0_f04e_28ee_98ea_8502e6531bc8
  7dd8ee93_7980_3539_ed2a_eeed062615e8["doUrlReplace()"]
  7dd8ee93_7980_3539_ed2a_eeed062615e8 -->|calls| a1913d05_1c71_5b7d_a56a_6addaacebefe
  6e68f70b_a828_f2ca_095c_ac125be97f1c["isExternalUrl()"]
  a1913d05_1c71_5b7d_a56a_6addaacebefe -->|calls| 6e68f70b_a828_f2ca_095c_ac125be97f1c
  a7b81176_d3f5_804a_a730_f5b71247e5ba["isDataUrl()"]
  a1913d05_1c71_5b7d_a56a_6addaacebefe -->|calls| a7b81176_d3f5_804a_a730_f5b71247e5ba
  style a1913d05_1c71_5b7d_a56a_6addaacebefe 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