(value: number | string)
| 69 | * @return {string} valid css value |
| 70 | */ |
| 71 | export function cssValue(value: number | string): string { |
| 72 | const lengthWithunit = parseLengthAndUnit(value); |
| 73 | |
| 74 | return `${lengthWithunit.value}${lengthWithunit.unit}`; |
| 75 | } |
no test coverage detected
searching dependent graphs…