UNPKG

@epmkit/cra-template-epm-plugin

Version:

The base template for EPM plugins.

10 lines (7 loc) 186 B
'use strict'; const { createHash } = require('crypto'); module.exports = env => { const hash = createHash('md5'); hash.update(JSON.stringify(env)); return hash.digest('hex'); };