‘第一次提交’

This commit is contained in:
2024-09-09 15:22:48 +08:00
commit f1eb10cdf2
106 changed files with 35495 additions and 0 deletions

View File

@@ -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');
};