UNPKG

iota-converter

Version:

Converts between trytes, trits and bytes

7 lines (5 loc) 200 B
import { bytesToTrits } from './bytes-to-trits' import { tritsToTrytes } from './trits-to-trytes' export function bytesToTrytes(bytes: Buffer): string { return tritsToTrytes(bytesToTrits(bytes)) }