Skip to content

Commit 3edb01d

Browse files
committed
update notice
1 parent c39d4c5 commit 3edb01d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

base64.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export function fromBase64url(str, format = 'uint8') {
5858

5959
let fromBase64common
6060
if (Uint8Array.fromBase64) {
61-
// NOTICE: this is actually slower than our JS impl in JavaScriptCore and (slightly) in SpiderMonkey, but faster on V8
61+
// NOTICE: this is actually slower than our JS impl in older JavaScriptCore and (slightly) in SpiderMonkey, but faster on V8 and new JavaScriptCore
6262
fromBase64common = (str, isBase64url) => {
6363
assert(!/\s/u.test(str), 'Invalid character in base64url input') // all other chars are checked natively
6464
const alphabet = isBase64url ? 'base64url' : 'base64'

0 commit comments

Comments
 (0)