example cleanup

This commit is contained in:
Vitaly Puzrin 2016-08-26 01:19:05 +03:00
parent 8e73b4f069
commit 9728a846c1
2 changed files with 1 additions and 5 deletions

View file

@ -65,8 +65,6 @@ function sendAncient() {
console.log('Sending data in ancient browsers...');
xhr.open('POST', 'http://localhost:8000/', true);
// Kludge to send binary strings as is.
xhr.overrideMimeType('text/plain; charset=x-user-defined');
xhr.send(resultAsBinString);
setTimeout(sendAncient, 2000);

View file

@ -30,9 +30,7 @@ const server = http.createServer((req, res) => {
// needs more libraries for old browsers (for unsupported `window.btoa()`).
//
// If you don't need IE8/9 support - just drop this part.
if (req.headers['content-type'] &&
/text\/plain/i.test(req.headers['content-type']) &&
/UTF-8/i.test(req.headers['content-type'])) {
if (/UTF-8/i.test(String(req.headers['content-type']))) {
console.log('--- data has utf-8 encoding');
bin = Buffer.from(bin.toString(), 'binary');