安装less

This commit is contained in:
禺狨
2023-03-03 13:50:50 +08:00
parent b4d66982ad
commit 4fa5daa326
37 changed files with 2012 additions and 20 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');
};