UNPKG

@yusufkandemir/eslint-plugin-lodash-template

Version:

ESLint plugin for John Resig-style micro template, Lodash's template, Underscore's template and EJS.

15 lines (12 loc) 231 B
"use strict"; module.exports = hash; /** * Create hash * @param {string} data plain text */ function hash(data) { return require("crypto") .createHash("md5") .update(data, "utf8") .digest("hex"); }