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
/
integerToIP.ts
3 lines
(2 loc)
•
128 B
text/typescript
View Raw
1
2
3
export
const
integerToIP = (
ip
:
number
):
string
=>
[(ip >>
24
) &
255
, (ip >>
16
) &
255
, (ip >>
8
) &
255
, ip &
255
].
join
(
'.'
);