mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
13 lines
223 B
JavaScript
13 lines
223 B
JavaScript
|
const crypto = require('crypto')
|
||
|
|
||
|
/* global WIKI */
|
||
|
|
||
|
module.exports = {
|
||
|
/**
|
||
|
* Generate unique hash from page
|
||
|
*/
|
||
|
generateHash(assetPath) {
|
||
|
return crypto.createHash('sha1').update(assetPath).digest('hex')
|
||
|
}
|
||
|
}
|