dustin-H/telaviv

View on GitHub
src/app/store/store.js

Summary

Maintainability
A
0 mins
Test Coverage

var store = {}

export function set(s) {
  Object.assign(store, s)
}

export function get() {
  return store
}