(k: string, v: any)
| 2 | public static readonly map = new Map<string, any>(); |
| 3 | |
| 4 | public static set(k: string, v: any) { |
| 5 | GlobalVariable.map.set(k, v); |
| 6 | } |
| 7 | |
| 8 | public static get(k: string, def?: any) { |
| 9 | if (GlobalVariable.map.has(k)) { |
no outgoing calls
no test coverage detected