(value: string)
| 102 | } |
| 103 | |
| 104 | function normalizeSpaces(value: string): string { |
| 105 | return value |
| 106 | .replace(/[\u00a0\u202f]/g, ' ') |
| 107 | .replace(/\s+/g, ' ') |
| 108 | .trim() |
| 109 | } |
| 110 | |
| 111 | function createUtcTimestamp( |
| 112 | year: number, |
no outgoing calls
no test coverage detected