(key: string)
| 437 | * ``` |
| 438 | */ |
| 439 | export function isSingleLetterKey(key: string): boolean { |
| 440 | return /^\p{Letter}$/u.test(key) |
| 441 | } |
| 442 | |
| 443 | /** |
| 444 | * Normalizes a key name to its canonical form. |
no outgoing calls
no test coverage detected
searching dependent graphs…