UNPKG
valaxy-addon-abbrlink
Version:
latest (0.0.1)
0.0.1
Template for Valaxy Addon.
github.com/YunYouJun/valaxy
YunYouJun/valaxy
valaxy-addon-abbrlink
/
node
/
utils.ts
8 lines
(6 loc)
•
172 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
crc
from
'crc'
export function getAbbrlinkHash(
str
: string): string { const
hash
= crc.crc32(
str
) const
hex
=
hash
.toString(
16
).padStart(
8
,
'0'
)
return
hex
}