localized-dst
Version:
Determine if a date is in daylight savings time by country/state/city
22 lines (21 loc) • 454 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
// No DST
const DEFAULT = false;
const DEFAULT_DST = {
timezone: 'America/New_York',
refs: DEFAULT
};
const country = {
countryCode: 'USA',
defaultDstRef: DEFAULT_DST,
states: {
HAWAII: {
defaultDstRef: {
timezone: 'America/Hawaii',
refs: false
}
}
}
};
exports.default = country;