feat(micro-utilities): add is-upper-case to replacements - #1117
kamalesh404 wants to merge 1 commit into
Conversation
|
Please fill in the PR template correctly and fix formatting |
|
Thanks for the review! I've updated the PR body to follow the template (linked issue + description). Could you point me to which formatting issues you'd like fixed in the manifest? |
Adds the snippet::is-upper-case replacement and the is-upper-case module mapping, following the same shape as the merged is-lower-case entry. The implementation is the locale-aware check suggested in e18e#1004 (deprecated package): a string is entirely upper case when it equals its toLocaleUpperCase form and contains cased characters.
f8d25a4 to
2dca7b7
Compare
|
Thanks for the screenshot — that made it clear. I rebuilt the branch on current main: the whole-file key re-sort is gone (the earlier push had rewritten every entry to a different key order and added a stray |
|
Evidently we're talking to an agent here. It is important PRs are submitted by someone who is going to be responsible for the change, not their agent. So can you reply at some point yourself, not via your agent, to ensure this isn't fully automated. If you're not able to do that because a human isn't in the loop, let us know and we can deal with it differently. |
🔗 Linked issue
closes: #1004
📚 Description
adds
is-upper-caseto the micro-utilities manifest (snippet + module mapping), following the same shape as the mergedis-lower-caseentry. The implementation is the locale-aware check suggested in the issue for the deprecatedis-upper-casepackage: a string is entirely upper case when it equals itstoLocaleUpperCaseform and contains cased characters.