Update 03-run-time.md

pull/3115/head
Rich Harris 5 years ago committed by GitHub
parent 5515bb49c9
commit 9806d18bdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -359,17 +359,21 @@ const delayed = derived(a, ($a, set) => {
}, 'one moment...');
```
If you return a function from the callback, it will be called when a) the callback runs again, or b) the last subscriber unsubscribes:
---
If you return a function from the callback, it will be called when a) the callback runs again, or b) the last subscriber unsubscribes.
```js
import { derived } from 'svelte/store';
const tick = derived(frequency, ($frequency, set) => {
const interval = setInterval(() => set(Date.now()), 1000 / $frequency);
const interval = setInterval(() => {
set(Date.now());
}, 1000 / $frequency);
return () => {
clearInterval(interval);
}
};
}, 'one moment...');
```

Loading…
Cancel
Save