neon/sys/
date.rs

1use std::mem::MaybeUninit;
2
3use super::{
4    bindings as napi,
5    raw::{Env, Local},
6};
7
8/// Create a new date object
9///
10/// # Safety
11///
12/// `env` is a raw pointer. Please ensure it points to a napi_env that is valid for the current context.
13pub unsafe fn new_date(env: Env, value: f64) -> Local {
14    let mut local = MaybeUninit::zeroed();
15    napi::create_date(env, value, local.as_mut_ptr()).unwrap();
16    local.assume_init()
17}
18
19/// Get the value of a date object
20///
21/// # Safety
22///
23/// `env` is a raw pointer. Please ensure it points to a napi_env that is valid for the current context.
24/// `Local` must be an NAPI value associated with the given `Env`
25pub unsafe fn value(env: Env, p: Local) -> f64 {
26    let mut value = 0.0;
27    napi::get_date_value(env, p, &mut value as *mut _).unwrap();
28    value
29}