10 lines
277 B
JavaScript
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 };
|