Home

tailwind-ctp-intellisense @3f07842da3b9920c973e748d419a6e0b6ebbcce8 - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tailwind-ctp-intellisense / src / lsp / util / joinWithAnd.ts
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
export function joinWithAnd(strings: string[]): string {
  return strings.reduce((acc, cur, i) => {
    if (i === 0) {
      return cur
    }
    if (strings.length > 1 && i === strings.length - 1) {
      return `${acc} and ${cur}`
    }
    return `${acc}, ${cur}`
  }, '')
}