//! This crate provides a wrapper around `std::panic::{set_hook, take_hook, update_hook}`
//! that work per thread.
//!//! When building for a wasm, we just re-export the original methods found in the std library.
#[cfg(not(target_family ="wasm"))]modpanic;#[cfg(target_family ="wasm")]modpanic{pubusestd::panic::{set_hook, take_hook, update_hook};}pubusepanic::*;