umc_parser_napi/
lib.rs

1#![deny(clippy::all)]
2
3use napi_derive::napi;
4
5#[napi]
6pub fn plus_100(input: u32) -> u32 {
7  input + 100
8}