(value: number | undefined)
| 208 | } |
| 209 | |
| 210 | function chromeStampNumber(value: number | undefined): string { |
| 211 | return Number.isFinite(value) ? String(Math.round((value ?? 0) * 1000)) : "0"; |
| 212 | } |
| 213 | |
| 214 | function chromeStampText(value: string | undefined | null): string { |
| 215 | return (value ?? "").replace(/[^a-zA-Z0-9_.-]+/g, "_"); |
no outgoing calls
no test coverage detected