mirror of
https://github.com/psforever/PSFPortal.git
synced 2026-01-20 02:24:48 +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);
|
|
});
|
|
}
|