UNPKG
storable-state
Version:
latest (2.1.0)
2.1.0
2.0.1
2.0.0
1.0.1
1.0.0
State management library that integrates with localStorage
storable-state
/
dist
/
store
/
readable.js
5 lines
(4 loc)
•
135 B
JavaScript
View Raw
1
2
3
4
5
import
Store
from
'./store.js'
;
export
default
(value, start) => {
return
{
subscribe
:
new
Store
(value, start).
subscribe
}; };