Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions manifests/micro-utilities.json
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,12 @@
"description": "You can use `typeof` to check if a value is `undefined`.",
"example": "typeof value === \"undefined\""
},
"snippet::is-upper-case": {
"id": "snippet::is-upper-case",
"type": "simple",
"description": "You can compare the string against its upper-cased form to determine if the string is entirely upper case",
"example": "const isUpperCase = (input, locale) =>\n input.toLocaleUpperCase(locale) === input &&\n input !== input.toLocaleLowerCase(locale)"
},
"snippet::is-weakmap": {
"id": "snippet::is-weakmap",
"type": "simple",
Expand Down Expand Up @@ -1052,6 +1058,11 @@
"moduleName": "is-unc-path",
"replacements": ["snippet::is-unc-path"]
},
"is-upper-case": {
"type": "module",
"moduleName": "is-upper-case",
"replacements": ["snippet::is-upper-case"]
},
"is-whitespace": {
"type": "module",
"moduleName": "is-whitespace",
Expand Down