3 lines
121 B
JavaScript
3 lines
121 B
JavaScript
import crypto from "crypto"
|
|
|
|
export const hashString = (string) => crypto.createHash('md5').update(string).digest('hex'); |