pub fn load_file_cb<F>(file_path: &str, cb: F)where
    F: FnMut(Result<Vec<u8>, FlufflError>),
Expand description

Description

fetches entire file, but instead user has to read contents through a callback this is done to avoid blocking if one doesn’t need it this function only really does non-blocking reads in wasm target AFAICT