DUET / src /lib /utils /trimSuffix.ts
unbrandedhuman's picture
Upload 83 files
1e95ed5
raw
history blame contribute delete
165 Bytes
export function trimSuffix(input: string, end: string): string {
if (input.endsWith(end)) {
return input.slice(0, input.length - end.length);
}
return input;
}