1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-18 06:41:02 +00:00
bramw_baserow/web-frontend/modules/core/utils/hashing.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
145 B
JavaScript
Raw Permalink Normal View History

import crypto from 'crypto'
export function generateHash(value) {
return crypto.createHash('sha256').update(value.toString()).digest('hex')
}