import { createHash } from 'node:crypto' export default function hash(string) { return createHash('md5').update(string).digest().toString('hex') }