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 07d8315 commit b418f6bCopy full SHA for b418f6b
src/lib/converter/comments/textParser.ts
@@ -347,7 +347,7 @@ function checkAttributes(
347
while (parser.state !== ParserState.END) {
348
if (
349
parser.state === ParserState.BeforeAttributeValue &&
350
- attributes.hasOwnProperty(parser.currentAttributeName)
+ Object.prototype.hasOwnProperty.call(attributes, parser.currentAttributeName)
351
) {
352
parser.step();
353
0 commit comments