There was an error while loading. Please reload this page.
1 parent 2ab526e commit cc115d5Copy full SHA for cc115d5
modules/facade/src/lang.es6
@@ -12,11 +12,11 @@ export class IMPLEMENTS {}
12
13
14
export function isPresent(obj):boolean {
15
- return obj != undefined && obj != null;
+ return obj !== undefined && obj !== null;
16
}
17
18
export function isBlank(obj):boolean {
19
- return obj == undefined || obj == null;
+ return obj === undefined || obj === null;
20
21
22
export function stringify(token):string {
0 commit comments