UNPKG

@0xsplits/splits-kit

Version:

UI Components for working with 0xSplits contracts

8 lines (7 loc) 215 B
export const roundToDecimals: (arg0: number, arg1: number) => number = ( num, decimals, ) => { const multiplier = Math.pow(10, decimals) return Math.round((num + Number.EPSILON) * multiplier) / multiplier }