UNPKG

iota-converter

Version:

Converts between trytes, trits and bytes

14 lines (9 loc) 261 B
import { TRYTES_TO_NUMBERS } from './constants' export function trytesToNumber(trytes: string): number { var i, result result = 0 for (i = trytes.length - 1; i >= 0; --i) { result = result * 27 + TRYTES_TO_NUMBERS[trytes[i]] } return result }