muse/src/utils/string.ts
Thongrapee Panyapatiphan 59cbc8b474
Announce current song (#470)
Co-authored-by: Max Isom <hi@maxisom.me>
2022-01-21 12:50:57 -06:00

2 lines
131 B
TypeScript

export const truncate = (text: string, maxLength = 50) =>
text.length > maxLength ? `${text.slice(0, maxLength - 3)}...` : text;