(fmtOptions: StringifyOptions = {})
| 41 | this.srcObject = srcObjc; |
| 42 | } |
| 43 | dump(fmtOptions: StringifyOptions = {}): string[] { |
| 44 | // deno-lint-ignore no-explicit-any |
| 45 | this.output = this.#printObject(this.srcObject as any); |
| 46 | this.output = this.#format(fmtOptions); |
| 47 | return this.output; |
| 48 | } |
| 49 | #printObject(obj: Record<string, unknown>, keys: string[] = []): string[] { |
| 50 | const out = []; |
| 51 | const props = Object.keys(obj); |
no test coverage detected