mirror of
https://github.com/psforever/PSFPortal.git
synced 2026-02-20 23:23:36 +00:00
9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
import { onDestroy } from 'svelte';
|
|
|
|
export function onInterval(callback, milliseconds) {
|
|
const interval = setInterval(callback, milliseconds);
|
|
|
|
onDestroy(() => {
|
|
clearInterval(interval);
|
|
});
|
|
}
|