/
outbreak
/
kilocode
Обзор
Документация
Войти
/
outbreak
/
kilocode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
webview-ui/src/utils/removeLeadingNonAlphanumeric.ts
10 строк
572 B
Chris Estreich
Show LLM streaming file write content (#3241)
13 май 2025, 19:47
Не верифицирован
13 май 2025, 19:47
d3c4693
Код
Авторство
О чём код?
// We need to remove certain leading characters from the path in order for our // leading ellipses trick to work. // However, we want to preserve all language characters (including CJK, // Cyrillic, etc.) and only remove specific punctuation that might interfere // with the ellipsis display. // // Only remove specific punctuation characters that might interfere with // ellipsis display. Keep all language characters (including CJK, Cyrillic // etc.) and numbers. export const removeLeadingNonAlphanumeric = (path: string): string => path.replace(/^[/\\:*?"<>|]+/, "")