refactor(fs-extra): remove console.log

This commit is contained in:
Nicolas Meienberger 2022-08-23 22:58:12 +02:00
parent b73844b24a
commit 0978338905

View file

@ -36,7 +36,6 @@ const readFileSync = (p: string) => {
};
const existsSync = (p: string) => {
console.log(p);
return mockFiles[p] !== undefined;
};