export async function isChangedFile()

in src/functions.ts [120:127]


export async function isChangedFile(filePath: string) {
  const result = await execByThrowError("git", [
    "status",
    filePath,
    "--porcelain",
  ]);
  return result === "";
}