UNPKG
vtex-deploy
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
Deploy assets to vtex
github.com/0000marcell/vtex-deploy
0000marcell/vtex-deploy
vtex-deploy
/
src
/
generate-new-template-id.js
10 lines
(8 loc)
•
251 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
{ createHash } =
require
(
'crypto'
);
/** * return a new template id based on the name of the template */
module
.
exports
=
function
(
templatename
) {
let
result =
createHash
(
'md5'
).
update
(templatename).
digest
(
'hex'
)
return
result; }