Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
devtools
/
node_modules
/
rxjs
/
src
/
internal
/
util
/
isDate.ts
blob: b18edf071ad62f1b0131eceb8d83ebceadf915c5 [
file
] [
log
] [
blame
]
export
function
isDate
(
value
:
any
):
value
is
Date
{
return
value
instanceof
Date
&&
!
isNaN
(+
value
);
}