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