diff --git a/modules/facade/src/lang.es6 b/modules/facade/src/lang.es6 index 170ca503f9..7d9310e62f 100644 --- a/modules/facade/src/lang.es6 +++ b/modules/facade/src/lang.es6 @@ -12,11 +12,11 @@ export class IMPLEMENTS {} export function isPresent(obj):boolean { - return obj != undefined && obj != null; + return obj !== undefined && obj !== null; } export function isBlank(obj):boolean { - return obj == undefined || obj == null; + return obj === undefined || obj === null; } export function stringify(token):string {