(className: string | void)
| 13 | * ``` |
| 14 | */ |
| 15 | const standardizeClass = (className: string | void) => { |
| 16 | const trimmed = className?.trim().replace(/\s+/g, ' ') |
| 17 | return trimmed ? trimmed.split(' ') ?? [] : [] |
| 18 | } |
| 19 | |
| 20 | export interface CreatePlayerOptions { |
| 21 | props: Props |
no outgoing calls
no test coverage detected