Prototype of web-based preview for subassemblies

This commit is contained in:
IDONTSUDO 2023-06-18 15:27:23 +00:00 committed by Igor Brylyov
parent 6560a4359d
commit 1fb7077774
55 changed files with 33076 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');
};