You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 28, 2025. It is now read-only.
1. Let _bytes_ be the unique (possibly empty) sequence of bytes resulting from decoding _input_ as base64 (such that applying the base64 encoding specified in section 4 of <ahref="https://datatracker.ietf.org/doc/html/rfc4648">RFC 4648</a> to _bytes_ would produce _input_).
90
90
1. Let _byteLength_ be the length of _bytes_.
91
91
1. If _lastChunkSize_ is 2, then
92
+
1.Assert:_byteLength_ ≥ 3.
92
93
1. If _strict_ is *true* and _bytes_[_byteLength_ - 2] is not 0, throw a *SyntaxError* exception.
93
94
1. Remove the final 2 elements of _bytes_.
94
95
1. Set _byteLength_ to _byteLength_ - 2.
95
96
1. Else if _lastChunkSize_ is 3, then
97
+
1.Assert:_byteLength_ ≥ 3.
96
98
1. If _strict_ is *true* and _bytes_[_byteLength_ - 1] is not 0, throw a *SyntaxError* exception.
0 commit comments