(command: string, cwd: string = TEST_REPO_DIR)
| 33 | |
| 34 | // Helper to execute git commands |
| 35 | function gitExec(command: string, cwd: string = TEST_REPO_DIR): string { |
| 36 | return execSync(command, { cwd, encoding: "utf8" }) |
| 37 | } |
| 38 | |
| 39 | const FIELD_SEPARATOR = "\x1f" |
| 40 | const RECORD_SEPARATOR = "\x1e" |
no outgoing calls
no test coverage detected