(header: string, values: Record<string, string | string[]>)
| 51 | * insertion into a TOML file. |
| 52 | */ |
| 53 | export function buildTomlTable(header: string, values: Record<string, string | string[]>): string { |
| 54 | return `[${header}]\n${serializeTomlTableBody(values)}`; |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Insert or replace a top-level dotted-key TOML table block in the |
no test coverage detected