Skip to content

Commit 6795d30

Browse files
committed
jshint
equality check error
1 parent b8665f2 commit 6795d30

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tasks/buildtsdoc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ var TypeScriptDocGenerator = (function () {
186186
var parent = node.parent;
187187
while (parent != null) {
188188
if (parent.kind === ts.SyntaxKind.ModuleDeclaration || parent.kind === ts.SyntaxKind.ClassDeclaration) {
189-
fullName = parent.name.getText() + ((fullName != '') ? "." + fullName : fullName);
189+
fullName = parent.name.getText() + ((fullName !== '') ? "." + fullName : fullName);
190190
}
191191
parent = parent.parent;
192192
}

0 commit comments

Comments
 (0)