From bc61057969054ebbd994654a48de5032a650faaa Mon Sep 17 00:00:00 2001 From: Erjan Gavalji Date: Wed, 20 Jan 2016 17:25:05 +0200 Subject: [PATCH] Fix the build by adding the "=" symbol --- console/console.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/console.ts b/console/console.ts index 63de74373..0bd16c0ea 100644 --- a/console/console.ts +++ b/console/console.ts @@ -286,7 +286,7 @@ export class Console implements definition.Console { } private escapeConsoleMessage(str: string): string { - if (typeof (str) != "string") { + if (typeof (str) !== "string") { return str; }