https://git.jolheiser.com/tailwind-ctp-intellisense.git
1 2 3 4 5 6 7
import levenshtein from 'js-levenshtein' export function closest(input: string, options: string[]): string | undefined { return options.sort( (a, b) => levenshtein(input, a) - levenshtein(input, b) )[0] }