style: Added missing semicolons

Avoid automated semicolon insertion and made semicolons consistent with the rest of the file.
This commit is contained in:
Antonio Román 2019-07-27 00:16:11 +02:00 committed by GitHub
parent 891b5bc096
commit 5f38868ddb
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ var pako = window.pako;
var obj = new Array(10);
for (var i = 0; i < obj.length; i++) {
obj[i] = { foo: 'bar', baz: 'БАТ' }
obj[i] = { foo: 'bar', baz: 'БАТ' };
}
// Convert /////////////////////////////////////////////////////////////////////
@ -82,7 +82,7 @@ function sendAncient() {
data += '--' + boundary + '\r\n';
data += 'Content-Disposition: form-data; name="binson"; filename="blob"\r\n';
data += 'Content-Type: application/octet-stream\r\n';
data += 'Content-Transfer-Encoding: base64\r\n'
data += 'Content-Transfer-Encoding: base64\r\n';
data += '\r\n';
data += btoa(resultAsBinString) + '\r\n';
data += '--' + boundary + '--\r\n';