UNPKG

autoheal

Version:

GPT Test driven development. Automatically fix tests and guide GPT to write and fix code using your tests.

11 lines (10 loc) 279 B
import fs from "fs"; export function backupFile(path) { const backupPath = `${path}.backup`; fs.copyFileSync(path, backupPath); return backupPath; } export function restoreFile(path) { const backupPath = `${path}.backup`; fs.copyFileSync(backupPath, path); }