Package Exports
- rev-hash
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 (rev-hash) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
rev-hash 
Create a hash for file revving
It will create an md5
hash from an input buffer or string, and truncate it to 10 characters, which is unique enough for this purpose.
If you think you need a different hash algorithm or a longer hash, you're wrong.
Install
$ npm install rev-hash
Usage
const fs = require('fs');
const revisionHash = require('rev-hash');
revisionHash(fs.readFileSync('unicorn.png'));
//=> 'bb9d8fe615'
revisionHash('Lorem ipsum dolor sit amet');
//=> 'fea80f2db0'
API
revisionHash(input)
input
Type: Buffer | string
Data to create a hash from.
License
MIT © Sindre Sorhus