Home

tailwind-ctp-intellisense @ff52e815b6ba6a968a47453d4353597db3f14f63 - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tailwind-ctp-intellisense / packages / tailwindcss-language-server / src / util / uri.ts
- raw
1
2
3
4
5
6
7
8
9
import { URI } from 'vscode-uri'

export function normalizeFileNameToFsPath(fileName: string) {
  return URI.file(fileName).fsPath
}

export function getFileFsPath(documentUri: string): string {
  return URI.parse(documentUri).fsPath
}