UNPKG

oxe

Version:

A mighty tiny web components framework/library

18 lines (11 loc) 274 B
import Utility from './utility.js'; const DATA = {}; export default { get data () { return DATA; }, get (path) { return Utility.getByPath(this.data, path); }, set (path, data) { return Utility.setByPath(this.data, path, data); } };