Skip to content

Commit

Permalink
Fixed BigNumber.js scoping
Browse files Browse the repository at this point in the history
  • Loading branch information
MiroMargineanu committed Nov 25, 2024
1 parent 4cadbc5 commit 64368be
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/utils/validation/stringIsFloat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,14 @@ export const stringIsFloat = (amount: string) => {

// eslint-disable-next-line
let [wholes, decimals] = amount.split('.');
const LocalBigNumber = BigNumber.clone();

if (decimals) {
const areAllNumbers = decimals
.split('')
.every((digit) => !isNaN(parseInt(digit)));

BigNumber.set({
LocalBigNumber.set({
DECIMAL_PLACES: areAllNumbers
? decimals.length
: BigNumber.config().DECIMAL_PLACES
Expand All @@ -30,6 +32,10 @@ export const stringIsFloat = (amount: string) => {
}
}
const number = decimals ? [wholes, decimals].join('.') : wholes;
const bNparsed = new BigNumber(number);
return bNparsed.toString(10) === number && bNparsed.comparedTo(0) >= 0;
const bNparsed = LocalBigNumber(number);

const output =
bNparsed.toString(10) === number && bNparsed.comparedTo(0) >= 0;

return output;
};

0 comments on commit 64368be

Please sign in to comment.