2020-11-25 18:42:14 +09:00
|
|
|
use napi::{CallContext, JsBoolean, JsObject, JsUnknown, Result};
|
2020-09-02 18:05:53 +09:00
|
|
|
|
|
|
|
#[js_function(2)]
|
|
|
|
pub fn instanceof(ctx: CallContext) -> Result<JsBoolean> {
|
|
|
|
let object = ctx.get::<JsUnknown>(0)?;
|
|
|
|
let constructor = ctx.get::<JsUnknown>(1)?;
|
|
|
|
ctx.env.get_boolean(object.instanceof(constructor)?)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[js_function(1)]
|
|
|
|
pub fn is_typedarray(ctx: CallContext) -> Result<JsBoolean> {
|
|
|
|
let js_value = ctx.get::<JsUnknown>(0)?;
|
|
|
|
ctx.env.get_boolean(js_value.is_typedarray()?)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[js_function(1)]
|
|
|
|
pub fn is_dataview(ctx: CallContext) -> Result<JsBoolean> {
|
|
|
|
let js_value = ctx.get::<JsUnknown>(0)?;
|
|
|
|
ctx.env.get_boolean(js_value.is_dataview()?)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[js_function(2)]
|
|
|
|
pub fn strict_equals(ctx: CallContext) -> Result<JsBoolean> {
|
|
|
|
let a: JsUnknown = ctx.get(0)?;
|
|
|
|
let b: JsUnknown = ctx.get(1)?;
|
|
|
|
ctx.env.get_boolean(ctx.env.strict_equals(a, b)?)
|
|
|
|
}
|
|
|
|
|
2020-11-25 18:42:14 +09:00
|
|
|
pub fn register_js(exports: &mut JsObject) -> Result<()> {
|
|
|
|
exports.create_named_method("instanceof", instanceof)?;
|
|
|
|
exports.create_named_method("isTypedarray", is_typedarray)?;
|
|
|
|
exports.create_named_method("isDataview", is_dataview)?;
|
|
|
|
exports.create_named_method("strictEquals", strict_equals)?;
|
2020-09-02 18:05:53 +09:00
|
|
|
Ok(())
|
|
|
|
}
|