(parts = 3)
| 1907 | ]; |
| 1908 | |
| 1909 | function generateRandomWordAliasTag(parts = 3) { |
| 1910 | const selected = []; |
| 1911 | for (let i = 0; i < parts; i++) { |
| 1912 | selected.push(GMAIL_ALIAS_WORDS[Math.floor(Math.random() * GMAIL_ALIAS_WORDS.length)]); |
| 1913 | } |
| 1914 | return selected.join(''); |
| 1915 | } |
| 1916 | |
| 1917 | function parseGmailBaseEmail(rawValue) { |
| 1918 | const value = String(rawValue || '').trim().toLowerCase(); |
no outgoing calls
no test coverage detected