Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
PaulMaly
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
PaulMaly
7y ago
You can create a custom store in Svelte and do almost the same: import { writable } from 'svelte/store'; export default function(state) { const { subscribe, set, update } = writable(state); return { subscribe, get