summaryrefslogtreecommitdiffstats
path: root/vendor/time/src/sys/local_offset_at/wasm_js.rs
blob: fcea4b0f5a3076dac4d47c069bce5d8979f83f95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{OffsetDateTime, UtcOffset};

/// Obtain the system's UTC offset.
pub(super) fn local_offset_at(datetime: OffsetDateTime) -> Option<UtcOffset> {
    let js_date: js_sys::Date = datetime.into();
    // The number of minutes returned by getTimezoneOffset() is positive if the local time zone
    // is behind UTC, and negative if the local time zone is ahead of UTC. For example,
    // for UTC+10, -600 will be returned.
    let timezone_offset = (js_date.get_timezone_offset() as i32) * -60;

    UtcOffset::from_whole_seconds(timezone_offset).ok()
}