/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
apps/dashboard/src/utils/titleize.ts
3 строки
126 B
George Desipris
feat(api-service,dashboard): Step integration issues (#7655)
11 фев 2025, 15:20
Не верифицирован
11 фев 2025, 15:20
bef8953
Код
Авторство
О чём код?
export const titleize = (str: string) => { return str.replace(/_/g, ' ').replace(/\b\w/g, (char) => char.toUpperCase()); };