UNPKG

iota-converter

Version:

Converts between trytes, trits and bytes

8 lines (5 loc) 207 B
import { numberToTrits } from './number-to-trits' import { tritsToTrytes } from './trits-to-trytes' export function numberToTrytes(number: number): string { return tritsToTrytes(numberToTrits(number)) }