(wpmAndRaw: { wpm: number; raw: number })
| 147 | } |
| 148 | |
| 149 | function monkey(wpmAndRaw: { wpm: number; raw: number }): void { |
| 150 | if (timerDebug) console.time("update monkey"); |
| 151 | const num = Config.blindMode ? wpmAndRaw.raw : wpmAndRaw.wpm; |
| 152 | Monkey.updateFastOpacity(num); |
| 153 | if (timerDebug) console.timeEnd("update monkey"); |
| 154 | } |
| 155 | |
| 156 | function layoutfluid(): void { |
| 157 | if (timerDebug) console.time("layoutfluid"); |