Package Exports
- swarmhash3
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (swarmhash3) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
swarmhash3

An implementation of Swarm Hash as it is implemented in Swarm PoC3
Example Usage
const swarmHash = require('swarmhash3');
const content = 'Test content to hash';
const hash = swarmHash(content);
console.log(hash);