(value: number, unit: string)
| 1875 | // ─── Comprehensive var() substitution in shorthands ─────────────────────────── |
| 1876 | |
| 1877 | const u = (value: number, unit: string) => |
| 1878 | expect.objectContaining({ type: "unit", value, unit }); |
| 1879 | const num = (value: number) => u(value, "number"); |
| 1880 | const kw = (value: string) => |
| 1881 | expect.objectContaining({ type: "keyword", value }); |
no outgoing calls
no test coverage detected