Crate wasm_rs_dbg

Crate wasm_rs_dbg 

Source
Expand description

§dbg!() for wasm32

This is a drop-in replacement for std::dbg, here’s how it can be used:

use wasm_rs_dbg::dbg;

fn test() {
  dbg!();
  dbg!(Some(1));
}
// ...

Macros§

dbg
This dbg! macro is a drop-in replacement for std::dbg