(value: unknown)
| 15 | * @returns String(value) or "" |
| 16 | */ |
| 17 | export function stringOrEmpty(value: unknown): string { |
| 18 | return value == null ? "" : String(value) |
| 19 | } |
| 20 | |
| 21 | export function parseSlotTypes(type: ISlotType): string[] { |
| 22 | return type == "" || type == "0" ? ["*"] : String(type).toLowerCase().split(",") |
no outgoing calls
no test coverage detected