codemp/src/ffi/js/ext.rs

14 lines
262 B
Rust
Raw Normal View History

2024-08-27 16:09:44 +02:00
use napi_derive::napi;
2024-09-27 23:34:48 +02:00
/// Hash function
2024-08-27 16:09:44 +02:00
#[napi(js_name = "hash")]
pub fn js_hash(data: String) -> i64 {
2024-10-01 00:42:57 +02:00
crate::ext::hash(data)
2024-08-27 16:09:44 +02:00
}
2024-09-27 23:34:48 +02:00
/// Get the current version of the client
#[napi(js_name = "version")]
pub fn js_version() -> &'static str {
crate::version()
}