UNPKG
ton3-liteclient
Version:
latest (0.0.1)
0.0.1
TON Blockchain LiteClient
github.com/tonkite/ton3-liteclient
tonkite/ton3-liteclient
ton3-liteclient
/
src
/
utils
/
crc32.ts
6 lines
(4 loc)
•
126 B
text/typescript
View Raw
1
2
3
4
5
6
import
*
as
crc
from
'crc-32'
;
export
function
crc32
(
value: string
) {
return
crc.
str
(value.
trim
().
replace
(
/[()]/g
,
''
)); }