refactor: move getCharset helper to only usage#707
Open
Phillip9587 wants to merge 1 commit intoexpressjs:masterfrom
Open
refactor: move getCharset helper to only usage#707Phillip9587 wants to merge 1 commit intoexpressjs:masterfrom
Phillip9587 wants to merge 1 commit intoexpressjs:masterfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Refactors charset extraction by moving the getCharset helper from the shared lib/utils.js module into lib/read.js, where it is exclusively used, and updating the implementation to use optional chaining to avoid unnecessary string work when no charset is present.
Changes:
- Remove
getCharset(and itscontent-typedependency) fromlib/utils.jsexports. - Add a local
getCharsetimplementation tolib/read.jsand inline thecontent-typedependency there. - Switch charset normalization to
charset?.toLowerCase()to avoid allocating''and lowercasing when charset is absent.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| lib/utils.js | Removes getCharset helper and the content-type import from the shared utils export surface. |
| lib/read.js | Adds content-type dependency and reintroduces getCharset locally for request charset parsing. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
...and uses optional chaining. In theory it short-circuits faster and by that avoids the empty string allocation and
.toLowerCase()call. But this is only in theory and probably highly optimized in engines.Same ideas as @Ayoub-Mabrouk in #557.