mirror of
https://github.com/plausible/analytics.git
synced 2024-12-22 00:51:36 +03:00
9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
|
const THIRTY_SECONDS = 30000
|
||
|
const tickEvent = new Event('tick')
|
||
|
|
||
|
export function start() {
|
||
|
setInterval(() => {
|
||
|
document.dispatchEvent(tickEvent)
|
||
|
}, THIRTY_SECONDS)
|
||
|
}
|