We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20da4f8 commit eeac61eCopy full SHA for eeac61e
src/services/languages/javascript/methodExtractor.ts
@@ -21,11 +21,9 @@ export class JSMethodExtractor implements IMethodExtractor {
21
return [];
22
}
23
24
- // UserService
25
const packageFolderParent = path.dirname(packageFile.fsPath);
26
- const docFolder = path.dirname(document.uri.fsPath);
27
28
- var relative = path.relative(packageFolderParent, document.uri.fsPath)
+ let relative = path.relative(packageFolderParent, document.uri.fsPath)
29
.replaceAll('\\', '/'); // get rid of windows backslashes
30
31
if(relative.startsWith('node_modules')) {
0 commit comments