iota-converter
Version:
Converts between trytes, trits and bytes
9 lines (8 loc) • 342 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const bytes_to_trits_1 = require("./bytes-to-trits");
const trits_to_trytes_1 = require("./trits-to-trytes");
function bytesToTrytes(bytes) {
return trits_to_trytes_1.tritsToTrytes(bytes_to_trits_1.bytesToTrits(bytes));
}
exports.bytesToTrytes = bytesToTrytes;