compile-run
Version:
You can execute programs in different languages using this package
10 lines (9 loc) • 319 B
TypeScript
export declare const libPath: string;
export declare const tmpPath: string;
/**
* Checks if the dir exists at the provided path. If it doesn't exist simply makes a new Directory
*
* **Its a synchronous function
* @param path A path like string
*/
export declare function checkExistsAndMakeDir(path: string): void;