( axes: Record<string, boolean>, value: string | number, )
| 34 | * variable entrypoints always include the weight axis. |
| 35 | */ |
| 36 | export const toggleVariableAxis = ( |
| 37 | axes: Record<string, boolean>, |
| 38 | value: string | number, |
| 39 | ): Record<string, boolean> => ({ |
| 40 | ...toggleKey(axes, value), |
| 41 | wght: true, |
| 42 | }); |
no test coverage detected