IOPaint/lama_cleaner/app/config/webpack/persistentCache/createEnvironmentHash.js

10 lines
186 B
JavaScript
Raw Normal View History

'use strict';
const { createHash } = require('crypto');
module.exports = env => {
const hash = createHash('md5');
hash.update(JSON.stringify(env));
return hash.digest('hex');
};