LinHanjiang's picture
Upload 259 files
74aacd5
raw
history blame
186 Bytes
'use strict';
const { createHash } = require('crypto');
module.exports = env => {
const hash = createHash('md5');
hash.update(JSON.stringify(env));
return hash.digest('hex');
};