mirror of
https://github.com/tornadocash/tornado-classic-ui
synced 2024-02-02 15:04:09 +01:00
7 lines
169 B
JavaScript
7 lines
169 B
JavaScript
|
import { BigNumber as BN } from 'bignumber.js'
|
||
|
|
||
|
// return the number of decimal places of the value
|
||
|
export function decimalPlaces(value) {
|
||
|
return new BN(value).dp()
|
||
|
}
|