codemp/src/ffi/js/ext.rs

12 lines
247 B
Rust
Raw Normal View History

2024-08-27 16:09:44 +02:00
use napi_derive::napi;
#[napi(js_name = "hash")]
pub fn js_hash(str : String) -> napi::Result<i64>{
Ok(crate::ext::hash(str))
2024-08-27 16:09:44 +02:00
}
#[napi(js_name = "version")]
pub fn js_version(str : String) -> napi::Result<String>{
Ok(crate::version())
}