ipfs-unixfs-importer
Version:
JavaScript implementation of the UnixFs importer used by IPFS
11 lines • 369 B
JavaScript
/**
* @packageDocumentation
*
* Chunker functions split an incoming stream of bytes into chunks.
*
* The default is a fixed-size chunker which splits them into equally sized
* chunks though other strategies are available such as Rabin chunking.
*/
export { rabin } from './rabin.js';
export { fixedSize } from './fixed-size.js';
//# sourceMappingURL=index.js.map