tokio-fs-ext 0.7.7

Extend tokio fs to be compatible with native and wasm
Documentation
#[macro_export]
macro_rules! log {
    ($($arg:tt)*) => (
        web_sys::console::log_1(&wasm_bindgen::JsValue::from(&format!($($arg)*)))
    )
}

#[macro_export]
macro_rules! warning {
    ($($arg:tt)*) => (
        web_sys::console::warn_1(&wasm_bindgen::JsValue::from(&format!($($arg)*)))
    )
}

#[macro_export]
macro_rules! error {
    ($($arg:tt)*) => (
        web_sys::console::error_1(&wasm_bindgen::JsValue::from(&format!($($arg)*)))
    )
}

pub use error;
pub use log;
pub use warning;