I'm using a javascript implementation of the gzip algorithm which works fine with Firefox and Chrome. But with Internet Explorer I got the following error:
Method forEach is not supported!
Code:
deflate.deflate(data, level).forEach(function (byte) {
putByte(byte, out);
});
I'm using Internet Explorer 9, which should support the forEach Method.
Any ideas?
Thank you very much!