UNPKG

342 BJavaScriptView Raw
1/*
2 Copyright 2018 Google LLC
3
4 Use of this source code is governed by an MIT-style
5 license that can be found in the LICENSE file or at
6 https://opensource.org/licenses/MIT.
7*/
8
9const crypto = require('crypto');
10
11module.exports = (string) => {
12 const md5 = crypto.createHash('md5');
13 md5.update(string);
14 return md5.digest('hex');
15};