(configObj: IonicConfig)
| 6 | private m = new Map<keyof IonicConfig, any>(); |
| 7 | |
| 8 | reset(configObj: IonicConfig) { |
| 9 | this.m = new Map<keyof IonicConfig, any>(Object.entries(configObj) as any); |
| 10 | } |
| 11 | |
| 12 | get(key: keyof IonicConfig, fallback?: any): any { |
| 13 | const value = this.m.get(key); |
no outgoing calls
no test coverage detected