1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-11 06:10:05 +00:00
Files
adapter/src/utils/isLoginSuccess.ts
2020-07-07 19:53:35 +01:00

3 lines
102 B
TypeScript

export const isLogInSuccess = (response: string): boolean =>
/You have signed in/gm.test(response);