(rawValue = '')
| 74 | } |
| 75 | |
| 76 | function normalizeLuckmailEmailType(rawValue = '') { |
| 77 | const normalized = String(rawValue || '').trim().toLowerCase(); |
| 78 | return LUCKMAIL_EMAIL_TYPES.includes(normalized) |
| 79 | ? normalized |
| 80 | : DEFAULT_LUCKMAIL_EMAIL_TYPE; |
| 81 | } |
| 82 | |
| 83 | function normalizeLuckmailProjectName(rawValue = '') { |
| 84 | return normalizeText(rawValue); |
no outgoing calls
no test coverage detected