http-server-util-helper
v2.0.3
Published
some tools for node web
Readme
http-server-util-helper
commonjs
const {CryptoUtil} = require('http-server-util-helper')
const res = CryptoUtil.md5('lcd')
console.log(res) // 6fd473c94d954f6b2d202ff08c362fa0....
ts and es module
import {CryptoUtil} from 'http-server-util-helper'
const res = CryptoUtil.md5('lcd')
console.log(res) // 6fd473c94d954f6b2d202ff08c362fa0....
