Issue #275: Adding Array.prototype.find. Fixing newline.

This commit is contained in:
Tyler Laing 2018-07-05 16:02:51 -07:00
parent d29b17f158
commit baf76431bc

View File

@ -134,7 +134,6 @@ extern "C" {
#[wasm_bindgen(method)]
pub fn fill(this: &Array, value: JsValue, start: u32, end: u32) -> Array;
/// The `filter()` method creates a new array with all elements that pass the
/// test implemented by the provided function.
///