the-forest/client/node_modules/react-scripts/config/webpack/persistentCache/createEnvironmentHash.js

10 lines
186 B
JavaScript
Raw Normal View History

2024-09-17 20:35:18 -04:00
'use strict';
const { createHash } = require('crypto');
module.exports = env => {
const hash = createHash('md5');
hash.update(JSON.stringify(env));
return hash.digest('hex');
};