@@ -5,7 +5,7 @@ enum CaseConverterEnum {
5
5
*
6
6
* ```
7
7
* // If you entered "Lives down BY the River" for __replacerSlot__
8
- * __replacerSlot__(noCase)
8
+ * __replacerSlot__(noCase) OR __replacerSlot__NoCase__
9
9
*
10
10
* // It would output to:
11
11
* Lives down BY the River
@@ -18,12 +18,13 @@ enum CaseConverterEnum {
18
18
* ```
19
19
*/
20
20
None = '(noCase)' ,
21
+ NoneUnderscore = 'NoCase__' ,
21
22
/**
22
23
* [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to camel case.
23
24
*
24
25
* ```
25
26
* // If you entered "Lives down BY the River" for __replacerSlot__
26
- * __replacerSlot__(camelCase)
27
+ * __replacerSlot__(camelCase) OR __replacerSlot__CamelCase__
27
28
*
28
29
* // It would output to:
29
30
* livesDownByTheRiver
@@ -36,12 +37,13 @@ enum CaseConverterEnum {
36
37
* ```
37
38
*/
38
39
CamelCase = '(camelCase)' ,
40
+ CamelCaseUnderscore = 'CamelCase__' ,
39
41
/**
40
42
* [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to constant case.
41
43
*
42
44
* ```
43
45
* // If you entered "Lives down BY the River" for __replacerSlot__
44
- * __replacerSlot__(constantCase)
46
+ * __replacerSlot__(constantCase) OR __replacerSlot__ConstantCase__
45
47
*
46
48
* // It would output to:
47
49
* LIVES_DOWN_BY_THE_RIVER
@@ -54,12 +56,13 @@ enum CaseConverterEnum {
54
56
* ```
55
57
*/
56
58
ConstantCase = '(constantCase)' ,
59
+ ConstantCaseUnderscore = 'ConstantCase__' ,
57
60
/**
58
61
* [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to dot case.
59
62
*
60
63
* ```
61
64
* // If you entered "Lives down BY the River" for __replacerSlot__
62
- * __replacerSlot__(dotCase)
65
+ * __replacerSlot__(dotCase) OR __replacerSlot__DotCase__
63
66
*
64
67
* // It would output to:
65
68
* lives.down.by.the.river
@@ -72,12 +75,13 @@ enum CaseConverterEnum {
72
75
* ```
73
76
*/
74
77
DotCase = '(dotCase)' ,
78
+ DotCaseUnderscore = 'DotCase__' ,
75
79
/**
76
80
* [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to kebab case.
77
81
*
78
82
* ```
79
83
* // If you entered "Lives down BY the River" for __replacerSlot__
80
- * __replacerSlot__(kebabCase)
84
+ * __replacerSlot__(kebabCase) OR __replacerSlot__KebabCase__
81
85
*
82
86
* // It would output to:
83
87
* lives-down-by-the-river
@@ -90,12 +94,13 @@ enum CaseConverterEnum {
90
94
* ```
91
95
*/
92
96
KebabCase = '(kebabCase)' ,
97
+ KebabCaseUnderscore = 'KebabCase__' ,
93
98
/**
94
99
* [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to all lower case.
95
100
*
96
101
* ```
97
102
* // If you entered "Lives down BY the River" for __replacerSlot__
98
- * __replacerSlot__(lowerCase)
103
+ * __replacerSlot__(lowerCase) OR __replacerSlot__LowerCase__
99
104
*
100
105
* // It would output to:
101
106
* livesdownbytheriver
@@ -108,12 +113,13 @@ enum CaseConverterEnum {
108
113
* ```
109
114
*/
110
115
LowerCase = '(lowerCase)' ,
116
+ LowerCaseUnderscore = 'LowerCase__' ,
111
117
/**
112
118
* [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to pacal case.
113
119
*
114
120
* ```
115
121
* // If you entered "Lives down BY the River" for __replacerSlot__
116
- * __replacerSlot__(pascalCase)
122
+ * __replacerSlot__(pascalCase) OR __replacerSlot__PascalCase__
117
123
*
118
124
* // It would output to:
119
125
* LivesDownByTheRiver
@@ -126,12 +132,13 @@ enum CaseConverterEnum {
126
132
* ```
127
133
*/
128
134
PascalCase = '(pascalCase)' ,
135
+ PascalCaseUnderscore = 'PascalCase__' ,
129
136
/**
130
137
* [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to path case.
131
138
*
132
139
* ```
133
140
* // If you entered "Lives down BY the River" for __replacerSlot__
134
- * __replacerSlot__(pathCase)
141
+ * __replacerSlot__(pathCase) OR __replacerSlot__PathCase__
135
142
*
136
143
* // It would output to:
137
144
* lives/down/by/the/river
@@ -144,12 +151,13 @@ enum CaseConverterEnum {
144
151
* ```
145
152
*/
146
153
PathCase = '(pathCase)' ,
154
+ PathCaseUnderscore = 'PathCase__' ,
147
155
/**
148
156
* [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to sentence case.
149
157
*
150
158
* ```
151
159
* // If you entered "Lives down BY the River" for __replacerSlot__
152
- * __replacerSlot__(sentenceCase)
160
+ * __replacerSlot__(sentenceCase) OR __replacerSlot__SentenceCase__
153
161
*
154
162
* // It would output to:
155
163
* Lives down by the river
@@ -162,12 +170,13 @@ enum CaseConverterEnum {
162
170
* ```
163
171
*/
164
172
SentenceCase = '(sentenceCase)' ,
173
+ SentenceCaseUnderscore = 'SentenceCase__' ,
165
174
/**
166
175
* [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to snake case.
167
176
*
168
177
* ```
169
178
* // If you entered "Lives down BY the River" for __replacerSlot__
170
- * __replacerSlot__(snakeCase)
179
+ * __replacerSlot__(snakeCase) OR __replacerSlot__SnakeCase__
171
180
*
172
181
* // It would output to:
173
182
* lives_down_by_the_river
@@ -180,12 +189,13 @@ enum CaseConverterEnum {
180
189
* ```
181
190
*/
182
191
SnakeCase = '(snakeCase)' ,
192
+ SnakeCaseUnderscore = 'SnakeCase__' ,
183
193
/**
184
194
* [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to title case.
185
195
*
186
196
* ```
187
197
* // If you entered "Lives down BY the River" for __replacerSlot__
188
- * __replacerSlot__(titleCase)
198
+ * __replacerSlot__(titleCase) OR __replacerSlot__TitleCase__
189
199
*
190
200
* // It would output to:
191
201
* Lives Down By The River
@@ -198,6 +208,7 @@ enum CaseConverterEnum {
198
208
* ```
199
209
*/
200
210
TitleCase = '(titleCase)' ,
211
+ TitleCaseUnderscore = 'TitleCase__' ,
201
212
}
202
213
203
214
export default CaseConverterEnum ;
0 commit comments