UNPKG

parcel-bundler

Version:

<p align="center"> <a href="https://parceljs.org/" target="_blank"> <img alt="Parcel" src="https://user-images.githubusercontent.com/19409/31321658-f6aed0f2-ac3d-11e7-8100-1587e676e0ec.png" width="749"> </a> </p>

11 lines (8 loc) 162 B
const crypto = require('crypto'); function md5(string) { return crypto .createHash('md5') .update(string) .digest('hex'); } module.exports = md5;