mirror of https://github.com/Requarks/wiki.git
10 lines
204 B
10 lines
204 B
const crypto = require('crypto')
|
|
|
|
module.exports = {
|
|
/**
|
|
* Generate unique hash from page
|
|
*/
|
|
generateHash(assetPath) {
|
|
return crypto.createHash('sha1').update(assetPath).digest('hex')
|
|
}
|
|
}
|