Update App.svelte

Rename function `unsubscribe` to `subscribe` to match its purpose
pull/4299/head
Ranjan Purbey 6 years ago committed by GitHub
parent e93c991362
commit e22b37ff78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,7 +6,7 @@
let count_value; let count_value;
const unsubscribe = count.subscribe(value => { const subscribe = count.subscribe(value => {
count_value = value; count_value = value;
}); });
</script> </script>

Loading…
Cancel
Save