| 702 | const isID = id => _.isString(id) && (id.length === 24) && (__guard__(id.match(/[a-f0-9]/gi), x1 => x1.length) === 24) |
| 703 | |
| 704 | const isRegionalSubscription = name => /_basic_subscription/.test(name) |
| 705 | |
| 706 | const isSmokeTestEmail = email => /@example.com/.test(email) || /smoketest/.test(email) |
| 707 |
nothing calls this directly
no outgoing calls
no test coverage detected