Arbitrary precision arithmetic for integers in big endian order. See docs. Twin project of @arithmetic-operations-for/naturals-little-endian.
import{parse,stringify,translate}from'@arithmetic-operations-for/naturals-big-endian';parse(16,100,'ff');// [ 2 , 55 ]stringify(100,16,[2,55]);// 'ff'translate(10,16,'255');// 'ff'