UNPKG

@enact/cli

Version:

Full-featured build environment tool for Enact applications.

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