mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-24 11:08:16 +08:00
7 lines
252 B
TypeScript
7 lines
252 B
TypeScript
import { createHash } from 'node:crypto'
|
|
import { customAlphabet } from 'nanoid'
|
|
|
|
export const hash = (content: string) => createHash('md5').update(content).digest('hex')
|
|
|
|
export const nanoid = customAlphabet('0123456789abcdefghijklmnopqrstuvwxyz', 8)
|