(input: string)
| 118 | } |
| 119 | |
| 120 | function hashString(input: string): number { |
| 121 | let hash = 2166136261 |
| 122 | for (let i = 0; i < input.length; i++) { |
| 123 | hash ^= input.charCodeAt(i) |
| 124 | hash = Math.imul(hash, 16777619) |
| 125 | } |
| 126 | return hash >>> 0 |
| 127 | } |
| 128 | |
| 129 | function getSamplingKey(params: { |
| 130 | event: AnalyticsEvent |
no outgoing calls
no test coverage detected