8.1.0 • Published 5 years ago

@emit-js/store v8.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

store-ts

storeTs

Install

npm install @emit-js/emit @emit-js/store

Setup

import { Emit } from "@emit-js/emit"
import { store } from "@emit-js/store"

const emit = new Emit()
store(emit)

Usage

emit.set(["hello", "world"], true)
emit.get() // { hello: { world: true } }
emit.get("hello") // { world: true }
emit.get(["hello", "world"]) // true
emit.merge("hello", { universe: true })
emit.get() // { hello: { universe: true, world: true } }
8.1.0

5 years ago

8.0.2

5 years ago

8.0.1

5 years ago

7.0.21

5 years ago

7.0.19

5 years ago

7.0.18

5 years ago