MCPcopy Create free account
hub / github.com/SethGammon/Citadel / main

Function main

hooks_src/complexity-check.js:56–68  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

54}
55
56function main() {
57 let input = '';
58 process.stdin.setEncoding('utf8');
59 process.stdin.on('data', (chunk) => { input += chunk; });
60 process.stdin.on('end', () => {
61 try {
62 run(input);
63 } catch {
64 // Complexity check must never block — swallow all errors
65 }
66 process.exit(0);
67 });
68}
69
70function run(input) {
71 let event;

Callers 1

Calls 1

runFunction · 0.70

Tested by

no test coverage detected