( ...lists: (string[] | undefined)[] )
| 14 | let globalConfig: Config = DEFAULT_CONFIG; |
| 15 | |
| 16 | function mergeStringLists( |
| 17 | ...lists: (string[] | undefined)[] |
| 18 | ): string[] { |
| 19 | return [...new Set(lists.flatMap((list) => list ?? []))]; |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Configure default sanitization for all StreamHtml renders. |
no outgoing calls
no test coverage detected