(emu: number)
| 11 | |
| 12 | /** EMU to pixels (at 96 DPI). */ |
| 13 | export function emuToPx(emu: number): number { |
| 14 | return (emu / 914400) * 96 |
| 15 | } |
| 16 | |
| 17 | /** EMU to points. */ |
| 18 | export function emuToPt(emu: number): number { |
no outgoing calls
no test coverage detected