(keys: string[], value: Date)
| 221 | return fData; |
| 222 | } |
| 223 | #dateDeclaration(keys: string[], value: Date): string { |
| 224 | return `${this.#declaration(keys)}${this.#printDate(value)}`; |
| 225 | } |
| 226 | #format(options: StringifyOptions = {}): string[] { |
| 227 | const { keyAlignment = false } = options; |
| 228 | const rDeclaration = /^(\".*\"|[^=]*)\s=/; |
no test coverage detected