File size: 391 Bytes
d86b75d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
export function getCallingFileName(): string {
  try {
    const error = new Error();
    const callerFile = error.stack?.split('\n')[3].trim().replace(/^at /, '');
    const insidePerantheses = callerFile?.match(/\(([^)]+)\)/)?.[1];
    const getOnlyfilePaths = insidePerantheses?.split(':')[0]
    return getOnlyfilePaths;
  } catch (error) {
    console.error(error)
    return '';
  }
}