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