(opts)
| 5 | let started = false; |
| 6 | |
| 7 | export function start(opts) { |
| 8 | started = true; |
| 9 | if (isInBrowser) { |
| 10 | patchHistoryApi(opts); |
| 11 | reroute(); |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | export function isStarted() { |
| 16 | return started; |
no test coverage detected
searching dependent graphs…