Spaces:
Runtime error
Runtime error
File size: 257 Bytes
8969f81 |
1 2 3 4 5 6 7 8 9 |
const rootDirFinder = function(): string {
let i = __dirname.split('/').findIndex((dir) => dir === 'transformer-autocomplete');
return __dirname.split('/').slice(0, i+1).join('/');
};
const __rootDir: string = rootDirFinder();
export default __rootDir;
|