(storeDir: string)
| 25 | private cached: Settings | null = null; |
| 26 | |
| 27 | constructor(storeDir: string) { |
| 28 | mkdirSync(storeDir, { recursive: true }); |
| 29 | this.file = join(storeDir, FILE); |
| 30 | } |
| 31 | |
| 32 | get(): Settings { |
| 33 | if (!this.cached) { |
nothing calls this directly
no outgoing calls
no test coverage detected