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