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

Function parseNodeSecretVersion

src/proxy/mailbox/state.js:95–98  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

93}
94
95function parseNodeSecretVersion(value) {
96 const n = Number(value);
97 return Number.isInteger(n) && n > 0 ? n : null;
98}
99
100function isFullNodeSecretTupleUpdate(updatedSet) {
101 return Boolean(updatedSet) && MAILBOX_NODE_SECRET_TUPLE_KEYS.every((key) => updatedSet.has(key));

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected