Patch Changes
-
#3893
cd720ae
Thanks @tim-smart! - support "dropping" & "sliding" strategies in Mailbox -
#3893
cd720ae
Thanks @tim-smart! - add Mailbox.fromStream api -
#3886
b631f40
Thanks @fubhy! - OptimizedBase64.decode
by not capturing the padding characters in the underlying array buffer.Previously, the implementation first captured the padding characters in the underlying array buffer and
then returned a new subarray view of the buffer with the padding characters removed.By not capturing the padding characters, we avoid the creation of another typed array instance for the
subarray view.