UNPKG

iota-converter

Version:

Converts between trytes, trits and bytes

8 lines (5 loc) 203 B
import { numberToTrits } from './number-to-trits' import { tritsToBytes } from './trits-to-bytes' export function numberToBytes(number: number): Buffer { return tritsToBytes(numberToTrits(number)) }