()
| 51 | } |
| 52 | |
| 53 | finish() { |
| 54 | let hash = this.hash ^ (this.count * 4); |
| 55 | hash = hash ^ (hash >>> 16); |
| 56 | hash = hash * 0x85EBCA6B; |
| 57 | hash = hash ^ (hash >>> 13); |
| 58 | hash = hash * 0xC2B2AE35; |
| 59 | hash = hash ^ (hash >>> 16); |
| 60 | return hash; |
| 61 | } |
| 62 | |
| 63 | static hashStuff() { |
| 64 | const hash = new HashCode(); |
no outgoing calls
no test coverage detected