UNPKG

@libp2p/mplex

Version:

JavaScript implementation of https://github.com/libp2p/mplex

10 lines 278 B
/** * There was an error in the stream input buffer */ export class StreamInputBufferError extends Error { constructor(message = 'Stream input buffer error') { super(message); this.name = 'StreamInputBufferError'; } } //# sourceMappingURL=errors.js.map