(value: string | undefined | null)
| 212 | } |
| 213 | |
| 214 | function chromeStampText(value: string | undefined | null): string { |
| 215 | return (value ?? "").replace(/[^a-zA-Z0-9_.-]+/g, "_"); |
| 216 | } |
| 217 | |
| 218 | function buildChromeProfileAssetStamp(profile: ChromeProfile | null): string { |
| 219 | if (!profile) { |
no test coverage detected