ship-gis/node_modules/react-scripts/config/webpack/persistentCache/createEnvironmentHash.js

10 lines
186 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
'use strict';
const { createHash } = require('crypto');
module.exports = env => {
const hash = createHash('md5');
hash.update(JSON.stringify(env));
return hash.digest('hex');
};