(ms: number, shouldYield: Scheduler["shouldYield"] = defaultShouldYield)
| 347 | * @category constructors |
| 348 | */ |
| 349 | export const timerBatched = (ms: number, shouldYield: Scheduler["shouldYield"] = defaultShouldYield) => |
| 350 | makeBatched((task) => setTimeout(task, ms), shouldYield) |
| 351 | |
| 352 | /** @internal */ |
| 353 | export const currentScheduler: FiberRef<Scheduler> = globalValue( |
nothing calls this directly
no test coverage detected
searching dependent graphs…