Spaces:
Sleeping
Sleeping
File size: 196 Bytes
3530df7 | 1 2 3 4 5 6 7 8 9 10 | export const existsSync = () => false;
export const readFile = async () => {
throw new Error("Not supported");
};
export const writeFile = async () => {
throw new Error("Not supported");
};
|