UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

11 lines (8 loc) 182 B
'use strict'; var crypto = require('crypto'); module.exports = function md5(str) { return crypto .createHash('md5') .update(str) .digest('hex'); };