( axisKeys: readonly VariableAxisKey[], candidate: string, )
| 123 | }; |
| 124 | |
| 125 | const findAxisKey = ( |
| 126 | axisKeys: readonly VariableAxisKey[], |
| 127 | candidate: string, |
| 128 | ): VariableAxisKey | undefined => |
| 129 | axisKeys.find((axisKey) => axisKey.toLowerCase() === candidate.toLowerCase()); |
| 130 | |
| 131 | /** |
| 132 | * Pick the smallest published axis key that can satisfy a selected set of axes. For example: |
no outgoing calls
no test coverage detected