yarn eject

This commit is contained in:
David Lechner
2022-05-10 17:52:37 -05:00
parent 54e826490d
commit 10a3efc41f
16 changed files with 2003 additions and 199 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');
};