* @returns {string} the unit, lower-cased per spec (dimension tokens)
()
| 1405 | * @returns {string} the unit, lower-cased per spec (dimension tokens) |
| 1406 | */ |
| 1407 | get unit() { |
| 1408 | const v = this.value; |
| 1409 | return v.slice(_consumeANumber(v, 0)).toLowerCase(); |
| 1410 | } |
| 1411 | } |
| 1412 | |
| 1413 | /** |
nothing calls this directly
no test coverage detected