Skip to content

Commit

Permalink
style: update format
Browse files Browse the repository at this point in the history
  • Loading branch information
BBboy01 authored Sep 17, 2023
1 parent 2ec6c25 commit 7241e51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/base64.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe ('Base64.js', function() {
it ('can decode Base64-encoded input', function() {
for (let i = 0; i < 255; i++) {

Check failure on line 56 in test/base64.js

View workflow job for this annotation

GitHub Actions / build (14)

Unary operator '++' used

Check failure on line 56 in test/base64.js

View workflow job for this annotation

GitHub Actions / build (16)

Unary operator '++' used

Check failure on line 56 in test/base64.js

View workflow job for this annotation

GitHub Actions / build (18)

Unary operator '++' used
const char = String.fromCharCode(i);

Check failure on line 57 in test/base64.js

View workflow job for this annotation

GitHub Actions / build (14)

Missing space between function name and paren

Check failure on line 57 in test/base64.js

View workflow job for this annotation

GitHub Actions / build (16)

Missing space between function name and paren

Check failure on line 57 in test/base64.js

View workflow job for this annotation

GitHub Actions / build (18)

Missing space between function name and paren
assert.strictEqual (atob(btoa (char)), char);
assert.strictEqual (atob (btoa(char)), char);

Check failure on line 58 in test/base64.js

View workflow job for this annotation

GitHub Actions / build (14)

Missing space between function name and paren

Check failure on line 58 in test/base64.js

View workflow job for this annotation

GitHub Actions / build (16)

Missing space between function name and paren

Check failure on line 58 in test/base64.js

View workflow job for this annotation

GitHub Actions / build (18)

Missing space between function name and paren
}
assert.strictEqual (atob (''), '');
assert.strictEqual (atob ('Zg=='), 'f');
Expand Down

0 comments on commit 7241e51

Please sign in to comment.