Prototype of web-based preview for subassemblies
This commit is contained in:
parent
6560a4359d
commit
1fb7077774
55 changed files with 33076 additions and 0 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');
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue