{{ message }}
lib: use bracket notation instead of startsWith/endsWith for single char - #61500
Merged
nodejs-github-bot merged 1 commit intoAug 23, 2026
Merged
Conversation
cjihrig
approved these changes
Jan 24, 2026
ljharb
approved these changes
Jan 24, 2026
lpinca
approved these changes
Jan 24, 2026
bjohansebas
approved these changes
Jan 24, 2026
startsWith/endsWith for single char
anonrig
approved these changes
Jan 26, 2026
Contributor
Author
|
@anonrig Could you please check the progress of this PR? It looks like it might be stuck after approval. |
Contributor
|
This pull request has been marked as stale due to 90 days of inactivity. |
trivikr
force-pushed
the
lib/use-bracket-notation-for-single-char
branch
from
August 21, 2026 00:05
d6f31dc to
fb03a1e
Compare
trivikr
approved these changes
Aug 21, 2026
Member
|
@kimtaejin3 Can you please sign the first commit and force push? It's required as per updated instructions
|
Signed-off-by: Taejin Kim <rlaxowls1316@naver.com>
kimtaejin3
force-pushed
the
lib/use-bracket-notation-for-single-char
branch
from
August 21, 2026 06:44
fb03a1e to
5355e9f
Compare
bjohansebas
approved these changes
Aug 21, 2026
trivikr
approved these changes
Aug 21, 2026
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
Collaborator
Collaborator
aduh95
pushed a commit
that referenced
this pull request
Aug 25, 2026
Signed-off-by: Taejin Kim <rlaxowls1316@naver.com> PR-URL: #61500 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
aduh95
pushed a commit
that referenced
this pull request
Aug 25, 2026
Signed-off-by: Taejin Kim <rlaxowls1316@naver.com> PR-URL: #61500 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
aduh95
pushed a commit
that referenced
this pull request
Aug 27, 2026
Signed-off-by: Taejin Kim <rlaxowls1316@naver.com> PR-URL: #61500 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
aduh95
pushed a commit
that referenced
this pull request
Sep 7, 2026
Signed-off-by: Taejin Kim <rlaxowls1316@naver.com> PR-URL: #61500 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
aduh95
pushed a commit
that referenced
this pull request
Sep 7, 2026
Signed-off-by: Taejin Kim <rlaxowls1316@naver.com> PR-URL: #61500 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
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.

This PR avoids potential prototype pollution and improves performance by replacing method calls with
direct property access.