Home

tailwind-ctp-intellisense @adadf065186227fca9cecdd21fde2e1a743f513d - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tailwind-ctp-intellisense / packages / tailwindcss-language-server / src / util / stringify.ts
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
export function stringifyConfigValue(x: any): string {
  if (typeof x === 'string') return x
  if (typeof x === 'number') return x.toString()
  if (Array.isArray(x)) {
    return x
      .filter(y => typeof y === 'string')
      .filter(Boolean)
      .join(', ')
  }
  return ''
}