pub fn throw_val(s: JsValue) -> !
Available on crate feature
dep_wasm_bindgen
only.Expand description
Rethrow a JS exception
This function will throw a JS exception with the JS value provided. This function will not return and the Wasm stack will be popped until the point of entry of Wasm itself.
Note that it is very easy to leak memory with this function because this
function, unlike panic!
on other platforms, will not run destructors.
It’s recommended to return a Result
where possible to avoid the worry of
leaks.