-
Notifications
You must be signed in to change notification settings - Fork 84
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
feat(encoding): add TextDecoderStream
and TextEncoderStream
#267
Conversation
🦋 Changeset detectedLatest commit: 4bfb7ff The changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Thanks, I'm trying to figure out what's happening at CI |
@ykzts thanks for this and welcome as contributor! Shipped under https://github.com/vercel/edge-runtime/releases/tag/edge-runtime%402.1.0 🎉 |
@ykzts just to keep you in touch how amazing this PR was, It will be soon be part of Next.js codebase |
…el#267) * feat(encoding): add `TextDecoderStream` and `TextEncoderStream` * Create purple-monkeys-melt.md --------- Co-authored-by: Kiko Beats <josefrancisco.verdu@gmail.com>
TextDecoderStream
andTextEncoderStream
can be added to EdgeVM to convert aReadableStream
that returns aUint8Array
likeResponse.body
into astring
usingpipeThrough()
.