Skip to content

Commit 39472a3

Browse files
authored
Typo
1 parent 0dcd8c8 commit 39472a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/Jwt.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const decodeBase64 = input => {
1010
let output = '';
1111

1212
if (str.length % 4 === 1) {
13-
throw new Error('Malformated base64 string.');
13+
throw new Error('Malformed base64 string.');
1414
}
1515

1616
for (let bc = 0, bs = 0, buffer, i = 0;
@@ -71,4 +71,4 @@ class Jwt {
7171
}
7272
}
7373

74-
module.exports = Jwt;
74+
module.exports = Jwt;

0 commit comments

Comments
 (0)