(keys: string[])
| 178 | return `[[${joinKeys(keys)}]]`; |
| 179 | } |
| 180 | #declaration(keys: string[]): string { |
| 181 | const title = joinKeys(keys); |
| 182 | if (title.length > this.maxPad) { |
| 183 | this.maxPad = title.length; |
| 184 | } |
| 185 | return `${title} = `; |
| 186 | } |
| 187 | #arrayDeclaration(keys: string[], value: unknown[]): string { |
| 188 | return `${this.#declaration(keys)}${JSON.stringify(value)}`; |
| 189 | } |
no test coverage detected