We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8665f2 commit 6795d30Copy full SHA for 6795d30
1 file changed
tasks/buildtsdoc.js
@@ -186,7 +186,7 @@ var TypeScriptDocGenerator = (function () {
186
var parent = node.parent;
187
while (parent != null) {
188
if (parent.kind === ts.SyntaxKind.ModuleDeclaration || parent.kind === ts.SyntaxKind.ClassDeclaration) {
189
- fullName = parent.name.getText() + ((fullName != '') ? "." + fullName : fullName);
+ fullName = parent.name.getText() + ((fullName !== '') ? "." + fullName : fullName);
190
}
191
parent = parent.parent;
192
0 commit comments