You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
223 B

  1. const crypto = require('crypto')
  2. /* global WIKI */
  3. module.exports = {
  4. /**
  5. * Generate unique hash from page
  6. */
  7. generateHash(assetPath) {
  8. return crypto.createHash('sha1').update(assetPath).digest('hex')
  9. }
  10. }