ax5ui / ax5ui-kernel

Javascript UI Framework - AX5UI - Kernel Module
http://ax5.io
MIT License
157 stars 74 forks source link

ax5.util.getType(null) 이 undefined를 반환합니다. #50

Closed hyunjun19 closed 8 years ago

hyunjun19 commented 8 years ago
2016-09-28 9 43 21

제 생각에는 undefined는 변수나 프러퍼티가 선언된적이 없음을 의미하고 null은 값이 존재하지 않음을 의미하기 때문에 두 가지를 구분해서 처리해 주어야 한다고 생각합니다.

따라서 ax5.util.getType(null)은 "null"을 반환하는게 더 명확할 것 같습니다.

thomasJang commented 8 years ago

null 은 'null'이 되도록 수정했습니다.

hyunjun19 commented 8 years ago

https://github.com/ax5ui/ax5ui-kernel/pull/56/commits/fb95003704941e7ab94693c086a285e1091ba01e ax5.util.getType(undefined) 결과 값도 'null'이 나오는 버그 수정

hyunjun19 commented 8 years ago

테스트 이제 통과~