(remValue: number)
| 1 | export function remToPx(remValue: number) { |
| 2 | let rootFontSize = |
| 3 | typeof window === 'undefined' |
| 4 | ? 16 |
| 5 | : parseFloat(window.getComputedStyle(document.documentElement).fontSize) |
| 6 | |
| 7 | return remValue * rootFontSize |
| 8 | } |
no outgoing calls
no test coverage detected