| 1 | const fs = require('fs'); |
| 2 | |
| 3 | class Settings { // Heavily based on original for compat, but simplified and tweaked |
| 4 | constructor(path) { |
| 5 | try { |
| 6 | this.store = JSON.parse(fs.readFileSync(path)); |
nothing calls this directly
no outgoing calls
no test coverage detected