mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
example cleanup
This commit is contained in:
parent
8e73b4f069
commit
9728a846c1
2 changed files with 1 additions and 5 deletions
|
@ -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);
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Add table
Reference in a new issue