Conversation
There was a problem hiding this comment.
Pull request overview
This PR aims to reduce browser bundle size for the UTF-8 implementation by swapping the internal JS fallback module with a browser-specific replacement.
Changes:
- Added
fallback/utf8.browser.jsand included it in the publishedfileslist. - Added a package-level
browserfield mapping./fallback/utf8.js→./fallback/utf8.browser.js. - Adjusted
react-nativemappings to avoid unintended browser aliasing in RN.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| package.json | Adds browser alias for ./fallback/utf8.js and includes the new browser stub in published files. |
| fallback/utf8.browser.js | Introduces the browser-replacement module currently exporting encode/decodeFast as null. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
e9da3eb to
b171359
Compare
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
c000c49 to
86a2826
Compare
86a2826 to
562b1f8
Compare
ChALkeR
added a commit
that referenced
this pull request
Feb 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We trust browsers to always detect their TextDecoder / TextEncoder implementation as native, so no additional fallback is needed there
CI on browsers covers this