Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 253 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 253 Bytes

RE:DOM store

Immutable keypath store for RE:DOM

Installing

npm i @redom/store

Usage

import Store from '@redom/store';

const store = new Store();

store.set('a.b.c', 'Hello RE:DOM store!');

console.log(store.get('a.b.c'));