From baf76431bcdff0a40ed7317d1c20655f743c4d49 Mon Sep 17 00:00:00 2001 From: Tyler Laing Date: Thu, 5 Jul 2018 16:02:51 -0700 Subject: [PATCH] Issue #275: Adding Array.prototype.find. Fixing newline. --- src/js.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/js.rs b/src/js.rs index ef60a95c..36f338eb 100644 --- a/src/js.rs +++ b/src/js.rs @@ -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. ///