Home

tailwind-ctp-intellisense @feb19371f43ea4cd7752f08a549d292f471d966f - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tailwind-ctp-intellisense / packages / tailwindcss-language-server / src / util / naturalExpand.ts
- raw
1
2
3
4
5
6
7
8
function pad(n: string): string {
  return ('00000000' + n).substr(-8)
}

export function naturalExpand(value: number | string): string {
  let str = typeof value === 'string' ? value : value.toString()
  return str.replace(/\d+/g, pad)
}