1 2 3 4 5import { createHash } from 'crypto'; export const hashStringToUuid = (input) => { return createHash('md5').update(input).digest('hex'); }
1 2 3 4 5
import { createHash } from 'crypto'; export const hashStringToUuid = (input) => { return createHash('md5').update(input).digest('hex'); }