modarb-be / test.ts
moahmedwafy's picture
feat: get call file name
d86b75d
raw
history blame
256 Bytes
const error = new Error();
const callerFile = error.stack?.split('\n')[3].trim().replace(/^at /, '');
const insidePerantheses = callerFile?.match(/\(([^)]+)\)/)?.[1];
const getOnlyfilePaths = insidePerantheses?.split(':')[0]
console.log(getOnlyfilePaths);