-
Notifications
You must be signed in to change notification settings - Fork 643
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BREAKING(encoding/unstable): Replace encodeRaw
with encodeInto
& Remove decodeRaw
#6513
base: main
Are you sure you want to change the base?
Conversation
This is to allow unstable_base32_stream.ts to use it without exposing them to the public
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #6513 +/- ##
==========================================
- Coverage 95.29% 95.28% -0.02%
==========================================
Files 576 576
Lines 43315 43348 +33
Branches 6477 6485 +8
==========================================
+ Hits 41279 41304 +25
- Misses 1995 2003 +8
Partials 41 41 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
I'm in favor of the idea. Some suggestions about the names. How about |
Those names do sound better |
… to encodeIntoBase64
I am not a big fan of |
I don't think that is a fair comparison since what web APIs are there that offer similar functionality? For example, if you wanted to use TextEncoder.encodeInto, to be safe you need to know that the buffer you're encoding into needs to have at least 3x the length of the string you're encoding. I don't know of a function available to abstract this calculation for you. Instead you're required to know how UTF-16 translates to UTF-8. |
This pull request makes three breaking changes:
calcMax
tocalcBase64Size
.encodeRawBase64
withencodeBase64Into
.encodeRawBase64
was in my opinion too complicated for people to use and had very narrow usage requiring the user to first structure their code in very specific way before passing it to this function. This replacement function now does a lot of that heavy lifting for the user. Giving them a much neater and nicer API to deal with. To accomplish these changes two other unrelated bits of code had to also change:unstable_base64.ts
were moved to_common64.ts
with the user facing ones being reexported atunstable_base64.ts
.Base64EncoderStream
andBase64DecoderStream
were made to rely directly on_common64.ts
, removing it's dependency onunstable_base64.ts
and in turn,encodeRawBase64
anddecodeRawBase64
.decodeRawBase64
.decodeBase64Into
also wouldn't be possible given the current structure how the underlying code works.These same changes were also applied to base32 and hex.