MCPcopy Create free account
hub / github.com/EvoMap/evolver / readState

Function readState

src/gep/issueReporter.js:60–68  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

58}
59
60function readState() {
61 try {
62 const p = getStatePath();
63 if (fs.existsSync(p)) {
64 return JSON.parse(fs.readFileSync(p, 'utf8'));
65 }
66 } catch (_) {}
67 return { lastReportedAt: null, recentIssueKeys: [] };
68}
69
70function writeState(state) {
71 try {

Callers 3

recordSuppressionFunction · 0.70
shouldReportFunction · 0.70
maybeReportIssueFunction · 0.70

Calls 2

parseMethod · 0.80
getStatePathFunction · 0.70

Tested by

no test coverage detected