(domain: string)
| 12 | import { path } from 'ramda'; |
| 13 | |
| 14 | const cleanDomain = (domain: string) => |
| 15 | domain |
| 16 | .replace('www.', '') |
| 17 | .replace(/https?:\/\//, '') |
| 18 | .replace(/\/$/, ''); |
| 19 | |
| 20 | export class SdkAuthError extends Error { |
| 21 | payload: { |
no test coverage detected