The angular.isDate function returns true if and only if the object passed to it is of the type Date.
angular.isDate
angular.isDate(value)
Examples
angular.isDate("lone star") // false angular.isDate(new Date()) // true