Urara-Blog/node_modules/.pnpm-store/v3/files/d0/309641ca198c1d05652e13fd7ad94082ca3cf6ee452c92aa6f2d1406e42c9e11077a0c36f06b0d11c6648469e804557a81b2e356f7ee02d0d55a264d706f52
2022-08-14 01:14:53 +08:00

20 lines
661 B
Text

"use strict";
/*
Copyright 2018 Google LLC
Use of this source code is governed by an MIT-style
license that can be found in the LICENSE file or at
https://opensource.org/licenses/MIT.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.getStringHash = void 0;
const crypto_1 = __importDefault(require("crypto"));
function getStringHash(input) {
const md5 = crypto_1.default.createHash('md5');
md5.update(input);
return md5.digest('hex');
}
exports.getStringHash = getStringHash;