UNPKG
iota-converter
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Converts between trytes, trits and bytes
github.com/alexpods/iota-converter
alexpods/iota-converter
iota-converter
/
src
/
number-to-trytes.ts
8 lines
(5 loc)
•
207 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ numberToTrits }
from
'./number-to-trits'
import
{ tritsToTrytes }
from
'./trits-to-trytes'
export
function
numberToTrytes
(
number
:
number
):
string
{
return
tritsToTrytes
(
numberToTrits
(
number
)) }