Files
vtracer/webapp/src/common.rs
Chris Tsang 2243d107d5 Runs faster
2020-10-29 11:20:33 +08:00

7 lines
146 B
Rust

pub fn window() -> web_sys::Window {
web_sys::window().unwrap()
}
pub fn document() -> web_sys::Document {
window().document().unwrap()
}