(value)
| 22 | } |
| 23 | |
| 24 | function normalizeText(value) { |
| 25 | return String(value || '') |
| 26 | .replace(/\s+/g, ' ') |
| 27 | .trim() |
| 28 | .toLowerCase(); |
| 29 | } |
| 30 | |
| 31 | function normalizeTimestamp(value) { |
| 32 | if (!value) return 0; |
no outgoing calls
no test coverage detected