diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-01-13 12:53:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 12:53:45 +0100 |
commit | 291dcc31f778dc137f33b39d4750ed478a223ebd (patch) | |
tree | 997d9628338b3d9acb6ac67896ce0530e793c762 /test_napi/src/lib.rs | |
parent | a00e432297d2ae119c8e1097aec74badc886f912 (diff) |
fix(napi): date and unwrap handling (#17369)
Diffstat (limited to 'test_napi/src/lib.rs')
-rw-r--r-- | test_napi/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test_napi/src/lib.rs b/test_napi/src/lib.rs index 025fbf5d2..2d43b0aea 100644 --- a/test_napi/src/lib.rs +++ b/test_napi/src/lib.rs @@ -11,6 +11,7 @@ pub mod arraybuffer; pub mod r#async; pub mod callback; pub mod coerce; +pub mod date; pub mod numbers; pub mod object_wrap; pub mod primitives; @@ -127,6 +128,7 @@ unsafe extern "C" fn napi_register_module_v1( object_wrap::init(env, exports); callback::init(env, exports); r#async::init(env, exports); + date::init(env, exports); tsfn::init(env, exports); init_cleanup_hook(env, exports); |