napi-rs/napi-derive
2020-04-26 16:58:11 +08:00
..
src feat(derive): js_function derive 2020-04-26 16:36:44 +08:00
Cargo.toml feat(derive): js_function derive 2020-04-26 16:36:44 +08:00
README.md doc: add napi-derive example and document 2020-04-26 16:58:11 +08:00

napi-derive

js_function

use napi_rs::{Result, Value, CallContext, Number};
use napi_derive::js_function;
use std::convert::TryInto;

#[js_function]
fn fibonacci<'env>(ctx: CallContext<'env>) -> Result<Value<'env, Number>> {
  let n = ctx.get::<Number>(0)?.try_into()?;
  ctx.env.create_int64(fibonacci_native(n))
}

#[inline]
fn fibonacci_native(n: i64) -> i64 {
  match n {
    1 | 2 => 1,
    _ => fibonacci_native(n - 1) + fibonacci_native(n - 2)
  }
}