1 2 3 4 5 6 7 8 9
//! Stores the code specific to wasm compilations /// dox pub fn spawn<F>(future: F) where F: futures::Future<Output = ()> + 'static, { wasm_bindgen_futures::spawn_local(future); }