UNPKG

iota-converter

Version:

Converts between trytes, trits and bytes

7 lines (5 loc) 203 B
import { trytesToTrits } from './trytes-to-trits' import { tritsToBytes } from './trits-to-bytes'; export function trytesToBytes(trytes: string): Buffer { return tritsToBytes(trytesToTrits(trytes)) }