Files
BridgeSwarm/extension/protomux-entry.cjs
T
2026-02-12 03:27:05 -05:00

10 lines
277 B
JavaScript

/**
* Entry for bundling Protomux + compact-encoding + b4a for the browser.
* Built with: npm run build:protomux (or esbuild)
*/
const Protomux = require('protomux');
const c = require('compact-encoding');
const b4a = require('b4a');
module.exports = { Protomux, c, b4a };