Skip to content

Commit b8108af

Browse files
committed
retrigger
1 parent 808d4dd commit b8108af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/adaptive-expressions/src/builtInFunction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ export class BuiltInFunctions {
11061106
}
11071107

11081108
private static isNumber(instance: any): boolean {
1109-
return typeof instance === 'number' && !Number.isNaN(instance);
1109+
return instance !== undefined && instance !== null && typeof instance === 'number' && !Number.isNaN(instance);
11101110
}
11111111

11121112
private static isEmpty(instance: any): boolean {

0 commit comments

Comments
 (0)