UNPKG

mcu-sdk

Version:

MCU-SDK provides a set of methods to access the data provided by the Marvel Comics API.

9 lines (8 loc) 290 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.hashGenerator = void 0; const crypto_1 = require("crypto"); const hashGenerator = (str) => { return (0, crypto_1.createHash)("md5").update(str).digest("hex"); }; exports.hashGenerator = hashGenerator;