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

Method keys

packages/tailwindcss/src/utilities.ts:143–156  ·  view source on GitHub ↗
(kind: 'static' | 'functional')

Source from the content-addressed store, hash-verified

141 }
142
143 keys(kind: 'static' | 'functional') {
144 let keys: string[] = []
145
146 for (let [key, fns] of this.utilities.entries()) {
147 for (let fn of fns) {
148 if (fn.kind === kind) {
149 keys.push(key)
150 break
151 }
152 }
153 }
154
155 return keys
156 }
157}
158
159function property(ident: string, initialValue?: string, syntax?: string) {

Callers 2

functionalUtilityFunction · 0.45
createUtilitiesFunction · 0.45

Calls 1

entriesMethod · 0.45

Tested by

no test coverage detected