mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-15 21:07:11 +00:00
4 lines
128 B
JavaScript
4 lines
128 B
JavaScript
import * as crypto from 'node:crypto'
|
|
export function md5 (str) {
|
|
return crypto.createHash('md5').update(str).digest('hex')
|
|
}
|