export class StringHelper {
    public static replaceLineBreaks(string: string): string {
        return string.replace(/(\r\n|\n|\r)/gm, " ");
    }

    public static generateCustomFrameworkNames(inputName: string) {
        return inputName.trimStart().trimEnd().toLowerCase().replaceAll(' ', '-');
    }
}
