I just convert all utf-16le encoded feeds to utf-8
if (enc && enc.toLowerCase() === "utf-16le") {
var chars = [];
for (var i = 0, l = body.length; i < l; i += 2) {
chars.push(body.charCodeAt(i) | (body.charCodeAt(i + 1) << 8));
}
body = String.fromCharCode.apply(String, chars);
}
I just convert all utf-16le encoded feeds to utf-8