export const isLogInRequired = (response: string): boolean => { const pattern: RegExp = //gm const matches = pattern.test(response) return matches }