Spica2
Spica2
when will this be integrated?
Just tried export const count = writable( localStorage.getItem("count") || 4 ); count.subscribe(val => localStorage.setItem("count", val )); and was fine edit: but only in browser in dev mode. With capacitor on...
If you want to sync also values explicitely set to 0 change line 36 of index.js to `lastValue = ( get(key) === "" )? value : get(key);` The condition referes...
snippet below does the job nearly, but has some negative effect. - The update counter sums up to different counts on each loop - the first loop has around of...