UNPKG

gitiumiota

Version:
7 lines (5 loc) 219 B
/** @module converter */ export * from './ascii' export * from './trits' export const bytesToTrits = (bytes: Buffer) => Int8Array.from(bytes) export const tritsToBytes = (trits: Int8Array) => Buffer.from(trits.buffer)