X Tutup
Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 257 Bytes

File metadata and controls

25 lines (16 loc) · 257 Bytes

js安装和使用md5

  1. 执行安装

    npm install js-md5
    
  2. 使用

getMd5(str){
	let md5 = require('js-md5');
 	return md5(str);
}
  1. 案例

    123456=> e10adc3949ba59abbe56e057f20f883e
    
X Tutup