소스 검색

Avoid use of ==

Nicolas Petton 12 년 전
부모
커밋
49bdc8f3ff
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      js/boot.js

+ 1 - 1
js/boot.js

@@ -35,7 +35,7 @@
 
 /* Make that console is defined */
 
-if (typeof console == "undefined") {
+if (typeof console === "undefined") {
     this.console = {
 	log: function() {},
 	warn: function() {},