fix minor bug ater ts migration

This commit is contained in:
Roman Hotsiy 2016-06-18 20:58:50 +03:00
parent e9b95eac96
commit d57b96666b

View File

@ -143,7 +143,7 @@ export class BaseComponent implements OnInit, OnDestroy {
}
function traverse(obj) {
if (obj === undefined || typeof(obj) !== 'object') {
if (obj == undefined || typeof(obj) !== 'object') {
return;
}