UNPKG
arquero-arrow
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
0.0.1
Arrow serialization support for Arquero.
uwdata/arquero-arrow
arquero-arrow
/
src
/
util
/
is-exact-utc-date.js
6 lines
•
160 B
JavaScript
View Raw
1
2
3
4
5
6
export
default
function
(
d
) {
return
d.
getUTCHours
() ===
0
&& d.
getUTCMinutes
() ===
0
&& d.
getUTCSeconds
() ===
0
&& d.
getUTCMilliseconds
() ===
0
; }