feat(Map): add Map.clear

This commit is contained in:
Jannik Keye
2018-06-28 21:51:39 +02:00
parent c608d46a56
commit ab0546963b
3 changed files with 48 additions and 0 deletions

View File

@ -302,6 +302,18 @@ extern {
pub fn to_string(this: &Function) -> JsString;
}
// Map
#[wasm_bindgen]
extern {
pub type Map;
/// The clear() method removes all elements from a Map object.
///
/// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/clear
#[wasm_bindgen(method)]
pub fn clear(this: &Map);
}
// Math
#[wasm_bindgen]
extern {