This commit is contained in:
2022-04-14 20:28:20 +08:00
parent 00931fc89f
commit 21e67024e9
29 changed files with 2531 additions and 155 deletions
@@ -0,0 +1,9 @@
'use strict';
const { createHash } = require('crypto');
module.exports = env => {
const hash = createHash('md5');
hash.update(JSON.stringify(env));
return hash.digest('hex');
};