mirror of
https://github.com/psforever/PSFPortal.git
synced 2026-01-19 18:14:45 +00:00
10 lines
199 B
JavaScript
10 lines
199 B
JavaScript
|
|
import { onDestroy } from 'svelte';
|
||
|
|
|
||
|
|
export function onInterval(callback, milliseconds) {
|
||
|
|
const interval = setInterval(callback, milliseconds);
|
||
|
|
|
||
|
|
onDestroy(() => {
|
||
|
|
clearInterval(interval);
|
||
|
|
});
|
||
|
|
}
|