Skip to content

Instantly share code, notes, and snippets.

@pablospaniard
Last active May 27, 2019 13:14
Show Gist options
  • Select an option

  • Save pablospaniard/f015c6de4f4cb9ad3a3d74192a720ad6 to your computer and use it in GitHub Desktop.

Select an option

Save pablospaniard/f015c6de4f4cb9ad3a3d74192a720ad6 to your computer and use it in GitHub Desktop.
export const roundDigit = (value, decimals) => {
const base = 10 ** decimals //** power of the given exponent
return Math.ceil(value * base) / base
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment