MCPcopy
hub / github.com/tailwindlabs/tailwindcss / word

Function word

packages/tailwindcss/src/value-parser.ts:19–24  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

17export type ValueAstNode = ValueWordNode | ValueFunctionNode | ValueSeparatorNode
18
19export function word(value: string): ValueWordNode {
20 return {
21 kind: 'word',
22 value,
23 }
24}
25
26function fun(value: string, nodes: ValueAstNode[]): ValueFunctionNode {
27 return {

Callers 1

parseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected