Files
squoosh/codecs/oxipng/tmp/lib.rs
2019-02-07 00:29:11 +00:00

11 lines
191 B
Rust

extern crate wasm_bindgen;
use wasm_bindgen::prelude::*;
use std::time::{Instant};
#[wasm_bindgen]
pub fn doit() -> u32 {
let start = Instant::now();
start.elapsed().as_secs() as u32
}