()
| 29 | private constructor() {} |
| 30 | |
| 31 | public static getInstance(): CertsCache { |
| 32 | if (!CertsCache.instance) { |
| 33 | CertsCache.instance = new CertsCache(); |
| 34 | } |
| 35 | return CertsCache.instance; |
| 36 | } |
| 37 | |
| 38 | get fixedCa(): string[] { |
| 39 | if (this._initialized) { |
no outgoing calls
no test coverage detected