UNPKG

229 BJavaScriptView Raw
1class context {
2 constructor() {
3 this._context = {}
4 }
5
6 set(key, value) {
7 this._context[key] = value
8 }
9
10 get(key) {
11 return this._context[key]
12 }
13}
14
15
16const instance = new context()
17
18export default instance
\No newline at end of file