discord-jellyfin-bot/src/utils/stringUtils.ts

10 lines
257 B
TypeScript
Raw Normal View History

export const trimStringToFixedLength = (value: string, maxLength: number) => {
if (maxLength < 1) {
throw new Error('max length must be positive');
}
return value.length > maxLength
? value.substring(0, maxLength - 3) + '...'
: value;
};