biofriction-wp-theme/node_modules/rev-hash
jorge-vitrubio a7910c81a8 moved to new repo 2021-10-26 14:18:09 +02:00
..
index.js moved to new repo 2021-10-26 14:18:09 +02:00
license moved to new repo 2021-10-26 14:18:09 +02:00
package.json moved to new repo 2021-10-26 14:18:09 +02:00
readme.md moved to new repo 2021-10-26 14:18:09 +02:00

readme.md

rev-hash Build Status

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 revHash = require('rev-hash');

revHash(fs.readFileSync('unicorn.png'));
//=> 'bb9d8fe615'

revHash('Lorem ipsum dolor sit amet');
//=> 'fea80f2db0'

API

revHash(input)

input

Type: Buffer string

Data to create a hash from.

License

MIT © Sindre Sorhus