mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-06 05:40:09 +00:00
5 lines
145 B
JavaScript
5 lines
145 B
JavaScript
import crypto from 'crypto'
|
|
|
|
export function generateHash(value) {
|
|
return crypto.createHash('sha256').update(value.toString()).digest('hex')
|
|
}
|