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.

10 lines
204 B

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