()
| 28 | // cSpell:ignore initted |
| 29 | let isInitted = false |
| 30 | export async function initFsrsTrainThreadPool() { |
| 31 | if (!isInitted) { |
| 32 | await initThreadPool(navigator.hardwareConcurrency) |
| 33 | isInitted = true |
| 34 | } |
| 35 | } |
nothing calls this directly
no outgoing calls
no test coverage detected