This commit is contained in:
Raven Scott
2026-05-20 19:25:40 -04:00
parent a5e52f7a0b
commit 0f2ab198a6
110 changed files with 19827 additions and 5 deletions
@@ -0,0 +1,9 @@
require('bare-process/global')
const { HyperP2PSilenceProtocol } = require('../index.js')
async function main () {
const s = new HyperP2PSilenceProtocol()
s.assertAbsent('evt-99')
console.log('absent', s.isAssertedAbsent('evt-99'))
await s.close()
}
main().catch(console.error)