summaryrefslogtreecommitdiffstats
path: root/vendor/wasm-bindgen/src/convert/slices.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/wasm-bindgen/src/convert/slices.rs')
-rw-r--r--vendor/wasm-bindgen/src/convert/slices.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/wasm-bindgen/src/convert/slices.rs b/vendor/wasm-bindgen/src/convert/slices.rs
index 58608b8c5..40ea6edc7 100644
--- a/vendor/wasm-bindgen/src/convert/slices.rs
+++ b/vendor/wasm-bindgen/src/convert/slices.rs
@@ -364,7 +364,7 @@ if_std! {
let ptr = <*mut JsValue>::from_abi(js.ptr);
let len = js.len as usize;
let vec: Vec<T> = Vec::from_raw_parts(ptr, len, len).drain(..).map(|js_value| T::unchecked_from_js(js_value)).collect();
- return vec.into_boxed_slice();
+ vec.into_boxed_slice()
}
}