UNPKG
localized-dst
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.0
Determine if a date is in daylight savings time by country/state/city
localized-dst
/
dist
/
index.js
6 lines
(5 loc)
•
245 B
JavaScript
View Raw
1
2
3
4
5
6
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
isDst
=
void
0
;
var
is_dst_1 =
require
(
"./is-dst"
);
Object
.
defineProperty
(
exports
,
"isDst"
, {
enumerable
:
true
,
get
:
function
(
) {
return
is_dst_1.
isDst
; } });