function removeNewLines()

in src/utils/Logger.ts [23:28]


function removeNewLines(message?: any): string {
    if (message && typeof message === 'string') {
        message = message.replace(/(\r\n|\n|\r)/gm, ' ');
    }
    return message;
}