lz-string 0.1.1

implementation of lz-string decompression
Documentation
1
2
3
4
5
6
7
8
macro_rules! nested_try {
    ($result:expr $(,)?) => {
        match $result {
            Err(e) => return Some(Err(e)),
            Ok(value) => value,
        }
    };
}