()
| 135 | } |
| 136 | |
| 137 | function onClockFast() { |
| 138 | if(clock + 10 > lastClock()) return; |
| 139 | setClock(clock + 10); |
| 140 | |
| 141 | let result = shaStepped(input, firstLoop(clock + 9), secondLoop(clock + 9), chunksLoop(clock + 9)); |
| 142 | |
| 143 | setWView(result.w); |
| 144 | setResult(result.hash); |
| 145 | setLetters(result.letters); |
| 146 | setLettersBefore(result.lettersBefore); |
| 147 | setHs(result.hs); |
| 148 | setHsBefore(result.hsBefore); |
| 149 | |
| 150 | ReactGA.event('onClockFast'); |
| 151 | } |
| 152 | |
| 153 | function onClockBackFast() { |
| 154 | if(clock < 10) return; |
nothing calls this directly
no test coverage detected