Files
penx/apps/web/lib/shared/md5.ts
0xzio 3edfe1aebf refactor: use monorepo
fix: fix build

chore: update README

feat: init extension

fix: fix web build
2025-04-19 01:48:59 +08:00

6 lines
109 B
TypeScript

import CryptoJS from 'crypto-js'
export function md5(str: string) {
return CryptoJS.MD5(str).toString()
}