(pct: number)
| 26 | |
| 27 | /** OOXML percentage (100000ths) to a decimal fraction (0..1 range for 0%..100%). */ |
| 28 | export function pctToDecimal(pct: number): number { |
| 29 | return pct / 100000 |
| 30 | } |
| 31 | |
| 32 | /** Hundredths of a point to points (used for font sizes in OOXML). */ |
| 33 | export function hundredthPtToPt(val: number): number { |
no outgoing calls
no test coverage detected