gloo-file 0.4.0

Convenience crate for working with JavaScript files and blobs
Documentation
//!
//! Working with files and blobs on the Web.
//!
//! These APIs come in two flavors:
//!
//! 1. a callback style (that more directly mimics the JavaScript APIs), and
//! 2. a `Future` API.

mod blob;
mod file_list;
mod file_reader;
mod object_url;

pub use blob::*;
pub use file_list::*;
pub use file_reader::*;
pub use object_url::*;

mod sealed {
    pub trait Sealed {}
}
use sealed::Sealed;