Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion projects/igniteui-angular/src/lib/core/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export const isObject = (value: any): boolean => value && value.toString() === '
* @returns true if provided variable is Date
* @hidden
*/
export const isDate = (value: any): boolean => value instanceof Date;
export const isDate = (value: any): value is Date => value instanceof Date;

/**
* Checks if the two passed arguments are equal
Expand Down

Large diffs are not rendered by default.

Loading