UNPKG

iota-converter

Version:

Converts between trytes, trits and bytes

7 lines (5 loc) 200 B
import { bytesToTrits } from './bytes-to-trits' import { tritsToNumber } from './trits-to-number' export function bytesToNumber(bytes: Buffer): number { return tritsToNumber(bytesToTrits(bytes)) }