Skip to content

Instantly share code, notes, and snippets.

@MoisesDuarte
Created June 17, 2022 13:38
Show Gist options
  • Save MoisesDuarte/5ede5d14e1230570c36c8abcbb768a8f to your computer and use it in GitHub Desktop.
Save MoisesDuarte/5ede5d14e1230570c36c8abcbb768a8f to your computer and use it in GitHub Desktop.
export const bankersRoundValue = (value, decimals = 0) => {
const exp = 10 ** decimals;
const number = value * exp;
const roundedValue = Math.round(number);
const isEven = roundedValue % 2 === 0 ? roundedValue : roundedValue - 1;
const finalValue = Math.abs(number) % 1 === 0.5 ? isEven : roundedValue;
return finalValue;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment