For example, this code is fine with node: ``` zlib.inflateSync(arr); ``` But with browserify-zlib we get `TypeError: not a string or buffer` and we must write instead: ``` zlib.inflateSync(Buffer.from(arr)) ```