From 3442f9d9d72b307aa0fc691319004813a50f373d Mon Sep 17 00:00:00 2001 From: Jannik Keye Date: Wed, 4 Jul 2018 13:18:06 +0200 Subject: [PATCH] fix: Reflect.has --- src/js.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js.rs b/src/js.rs index 38ade1dd..7b54aa02 100644 --- a/src/js.rs +++ b/src/js.rs @@ -1041,7 +1041,7 @@ extern "C" { /// /// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/has #[wasm_bindgen(static_method_of = Reflect, catch)] - pub fn has(target: &JsValue, property_key: &JsValue) -> Result; + pub fn has(target: &JsValue, property_key: &JsValue) -> Result; /// The static Reflect.isExtensible() method determines if an object is extensible /// (whether it can have new properties added to it). It is similar to