mirror of
https://github.com/Mastermindzh/react-starter-kit.git
synced 2025-01-21 02:50:55 +01:00
10 lines
188 B
JavaScript
10 lines
188 B
JavaScript
"use strict";
|
|
const { createHash } = require("crypto");
|
|
|
|
module.exports = (env) => {
|
|
const hash = createHash("md5");
|
|
hash.update(JSON.stringify(env));
|
|
|
|
return hash.digest("hex");
|
|
};
|