()
| 8 | use web_sys::{self, console}; |
| 9 | |
| 10 | pub(crate) fn window() -> web_sys::Window { |
| 11 | web_sys::window().expect("Window to be available") |
| 12 | } |
| 13 | |
| 14 | pub fn sys_stdout_write_console(data: &str, _vm: &VirtualMachine) -> PyResult<()> { |
| 15 | console::log_1(&data.into()); |
no outgoing calls
no test coverage detected