(rawValue = '')
| 28 | } |
| 29 | |
| 30 | function normalizeHotmailServiceMode(rawValue = '') { |
| 31 | return String(rawValue || '').trim().toLowerCase() === HOTMAIL_SERVICE_MODE_REMOTE |
| 32 | ? HOTMAIL_SERVICE_MODE_REMOTE |
| 33 | : HOTMAIL_SERVICE_MODE_LOCAL; |
| 34 | } |
| 35 | |
| 36 | function extractVerificationCode(text) { |
| 37 | const source = String(text || ''); |
no outgoing calls
no test coverage detected