@fewcha/web3
Version:
The `@fewcha/web3` library aims to be an all-in-one toolkit to enable developers interact with Aptos Blockchain and its ecosystem.
38 lines (37 loc) • 1.41 kB
JavaScript
;
// Copyright 2022 Fewcha. All rights reserved.
Object.defineProperty(exports, "__esModule", { value: true });
exports.toDecimal = exports.toHuman = void 0;
const toHuman = (input, decimal, fractionDigit = 3, delimiter = ",") => {
if (input.length < decimal) {
if (input.length + fractionDigit < decimal) {
return "0";
}
else {
return `0${delimiter}${input.slice(0, Math.min(fractionDigit, decimal))}`;
}
}
else {
const fractionPositon = input.length - decimal;
const decimalNumber = `${input.slice(fractionPositon, Math.min(fractionDigit, decimal))}`;
if (decimalNumber !== "") {
return `${input.slice(0, fractionPositon)}${delimiter}${decimalNumber}`;
}
else {
return `${input.slice(0, fractionPositon)}`;
}
}
};
exports.toHuman = toHuman;
const toDecimal = (input, decimal, delimiter = ".") => {
var splitInput = input.split(delimiter);
if (splitInput.length !== 2) {
throw new Error("Invalid number");
}
// integral
const integral = splitInput[0] === "0" ? "" : splitInput[0];
// decimal
const _decimal = splitInput[1].length <= decimal ? `${splitInput[1]}${"0".repeat(decimal - splitInput[1].length)}` : `${splitInput[1].slice(0, decimal)}`;
return integral + _decimal;
};
exports.toDecimal = toDecimal;