(value: string)
| 35 | * isVersionedType('a_version') // false |
| 36 | */ |
| 37 | export function isVersionedType(value: string): boolean { |
| 38 | return /_v\d+$/.test(value) |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Normalizes an email address for comparison and storage by trimming |
no test coverage detected