Add binding for Object.getOwnPropertyDescriptors()

This commit is contained in:
Michael Hoffmann
2018-09-16 23:02:46 +02:00
parent b005e96fd9
commit 2d91fa11b5
2 changed files with 15 additions and 0 deletions

View File

@ -2031,6 +2031,13 @@ extern "C" {
#[wasm_bindgen(static_method_of = Object, js_name = getOwnPropertyDescriptor)]
pub fn get_own_property_descriptor(obj: &Object, prop: &JsValue) -> JsValue;
/// The Object.getOwnPropertyDescriptors() method returns all own
/// property descriptors of a given object.
///
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyDescriptors)
#[wasm_bindgen(static_method_of = Object, js_name = getOwnPropertyDescriptors)]
pub fn get_own_property_descriptors(obj: &Object) -> JsValue;
/// The `hasOwnProperty()` method returns a boolean indicating whether the
/// object has the specified property as its own property (as opposed to
/// inheriting it).