How to use the inflateRaw function from pako

Find comprehensive JavaScript pako.inflateRaw code examples handpicked from public code repositorys.

9
10
11
12
13
14
15
    return pako.deflateRaw(input, {
        level : compressionOptions.level || -1 // default compression
    });
};
exports.uncompress =  function(input) {
    return pako.inflateRaw(input);
};
fork icon4
star icon0
watch icon1