export async function checkFileExists()

in eng/tools/typespec-validation/src/utils.ts [20:24]


export async function checkFileExists(file: string) {
  return access(file)
    .then(() => true)
    .catch(() => false);
}