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 d6044b0 commit ffc37b9Copy full SHA for ffc37b9
src/server/code-parse/language/default/codecrumbs.js
@@ -57,7 +57,7 @@ const setupGetCommentsFromCode = regex => fileCode => {
57
return [];
58
}
59
60
- const result = compact(regex.exec(fileCode)) || [];
+ const result = fileCode.match(regex) || [];
61
62
return result.reduce((comments, value) => {
63
value = value.trim()
0 commit comments