1//! Various emscripten system functions that make programming in rust for emscripten targets easier.
2//! They are grouped by the original function's header file.
34#![cfg(target_os = "emscripten")]
56pub mod console;
7pub mod emscripten;
8pub mod websocket;