We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a622d2a commit 3435a60Copy full SHA for 3435a60
.gitignore
@@ -1,8 +1,7 @@
1
node_modules/*
2
-<<<<<<< HEAD
3
.vscode/*
4
-=======
5
->>>>>>> 7419cc9177542febefcb10fc54340266a6acad9b
+
+dist/*.js
6
7
# Compiled source #
8
###################
dist/index.js
dist/index.ts
@@ -102,11 +102,11 @@ export class String {
102
private static parsePattern(match: 'L' | 'U' | 'd' | 's' | 'n' | string, arg: string | Date | number | any): string {
103
switch (match) {
104
case 'L': {
105
- arg = arg.toLowerCase();
+ arg = arg.toLocaleLowerCase();
106
return arg;
107
}
108
case 'U': {
109
- arg = arg.toUpperCase();
+ arg = arg.toLocaleUpperCase();
110
111
112
case 'd': {
0 commit comments