notan_log 0.9.1

Provides a multipatform log support for Notan
#![cfg(target_arch = "wasm32")]
#![allow(clippy::unused_unit)]

use wasm_bindgen::prelude::*;

#[wasm_bindgen]
extern "C" {
    #[wasm_bindgen(js_namespace = console, js_name = error)]
    pub fn console_error(s: &str);
}