Files
feedstr.live/node_modules/react-scripts/config/webpack/persistentCache/createEnvironmentHash.js
T
2023-11-25 18:12:47 -05:00

10 lines
186 B
JavaScript

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