Last active
May 27, 2019 13:14
-
-
Save pablospaniard/f015c6de4f4cb9ad3a3d74192a720ad6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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