style: format
This commit is contained in:
parent
43304eefac
commit
8debd365d3
2 changed files with 7 additions and 11 deletions
|
@ -2,9 +2,5 @@ import crypto from 'crypto'
|
||||||
|
|
||||||
export default function hash(key: string) {
|
export default function hash(key: string) {
|
||||||
// git style hash
|
// git style hash
|
||||||
return crypto
|
return crypto.createHash('sha256').update(key).digest('hex').substring(0, 7)
|
||||||
.createHash('sha256')
|
|
||||||
.update(key)
|
|
||||||
.digest('hex')
|
|
||||||
.substring(0, 7)
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue