|
|
@ -1,6 +1,6 @@
|
|
|
|
import { readable, derive } from 'svelte/store';
|
|
|
|
import { readable, derive } from 'svelte/store';
|
|
|
|
|
|
|
|
|
|
|
|
export const time = readable(function start(set) {
|
|
|
|
export const time = readable(new Date(), function start(set) {
|
|
|
|
const interval = setInterval(() => {
|
|
|
|
const interval = setInterval(() => {
|
|
|
|
set(new Date());
|
|
|
|
set(new Date());
|
|
|
|
}, 1000);
|
|
|
|
}, 1000);
|
|
|
@ -8,7 +8,7 @@ export const time = readable(function start(set) {
|
|
|
|
return function stop() {
|
|
|
|
return function stop() {
|
|
|
|
clearInterval(interval);
|
|
|
|
clearInterval(interval);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}, new Date());
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const start = new Date();
|
|
|
|
const start = new Date();
|
|
|
|
|
|
|
|
|
|
|
|