@@ -5,7 +5,7 @@ enum CaseConverterEnum {
55 *
66 * ```
77 * // If you entered "Lives down BY the River" for __replacerSlot__
8- * __replacerSlot__(noCase)
8+ * __replacerSlot__(noCase) OR __replacerSlot__NoCase__
99 *
1010 * // It would output to:
1111 * Lives down BY the River
@@ -18,12 +18,13 @@ enum CaseConverterEnum {
1818 * ```
1919 */
2020 None = '(noCase)' ,
21+ NoneUnderscore = 'NoCase__' ,
2122 /**
2223 * [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to camel case.
2324 *
2425 * ```
2526 * // If you entered "Lives down BY the River" for __replacerSlot__
26- * __replacerSlot__(camelCase)
27+ * __replacerSlot__(camelCase) OR __replacerSlot__CamelCase__
2728 *
2829 * // It would output to:
2930 * livesDownByTheRiver
@@ -36,12 +37,13 @@ enum CaseConverterEnum {
3637 * ```
3738 */
3839 CamelCase = '(camelCase)' ,
40+ CamelCaseUnderscore = 'CamelCase__' ,
3941 /**
4042 * [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to constant case.
4143 *
4244 * ```
4345 * // If you entered "Lives down BY the River" for __replacerSlot__
44- * __replacerSlot__(constantCase)
46+ * __replacerSlot__(constantCase) OR __replacerSlot__ConstantCase__
4547 *
4648 * // It would output to:
4749 * LIVES_DOWN_BY_THE_RIVER
@@ -54,12 +56,13 @@ enum CaseConverterEnum {
5456 * ```
5557 */
5658 ConstantCase = '(constantCase)' ,
59+ ConstantCaseUnderscore = 'ConstantCase__' ,
5760 /**
5861 * [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to dot case.
5962 *
6063 * ```
6164 * // If you entered "Lives down BY the River" for __replacerSlot__
62- * __replacerSlot__(dotCase)
65+ * __replacerSlot__(dotCase) OR __replacerSlot__DotCase__
6366 *
6467 * // It would output to:
6568 * lives.down.by.the.river
@@ -72,12 +75,13 @@ enum CaseConverterEnum {
7275 * ```
7376 */
7477 DotCase = '(dotCase)' ,
78+ DotCaseUnderscore = 'DotCase__' ,
7579 /**
7680 * [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to kebab case.
7781 *
7882 * ```
7983 * // If you entered "Lives down BY the River" for __replacerSlot__
80- * __replacerSlot__(kebabCase)
84+ * __replacerSlot__(kebabCase) OR __replacerSlot__KebabCase__
8185 *
8286 * // It would output to:
8387 * lives-down-by-the-river
@@ -90,12 +94,13 @@ enum CaseConverterEnum {
9094 * ```
9195 */
9296 KebabCase = '(kebabCase)' ,
97+ KebabCaseUnderscore = 'KebabCase__' ,
9398 /**
9499 * [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to all lower case.
95100 *
96101 * ```
97102 * // If you entered "Lives down BY the River" for __replacerSlot__
98- * __replacerSlot__(lowerCase)
103+ * __replacerSlot__(lowerCase) OR __replacerSlot__LowerCase__
99104 *
100105 * // It would output to:
101106 * livesdownbytheriver
@@ -108,12 +113,13 @@ enum CaseConverterEnum {
108113 * ```
109114 */
110115 LowerCase = '(lowerCase)' ,
116+ LowerCaseUnderscore = 'LowerCase__' ,
111117 /**
112118 * [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to pacal case.
113119 *
114120 * ```
115121 * // If you entered "Lives down BY the River" for __replacerSlot__
116- * __replacerSlot__(pascalCase)
122+ * __replacerSlot__(pascalCase) OR __replacerSlot__PascalCase__
117123 *
118124 * // It would output to:
119125 * LivesDownByTheRiver
@@ -126,12 +132,13 @@ enum CaseConverterEnum {
126132 * ```
127133 */
128134 PascalCase = '(pascalCase)' ,
135+ PascalCaseUnderscore = 'PascalCase__' ,
129136 /**
130137 * [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to path case.
131138 *
132139 * ```
133140 * // If you entered "Lives down BY the River" for __replacerSlot__
134- * __replacerSlot__(pathCase)
141+ * __replacerSlot__(pathCase) OR __replacerSlot__PathCase__
135142 *
136143 * // It would output to:
137144 * lives/down/by/the/river
@@ -144,12 +151,13 @@ enum CaseConverterEnum {
144151 * ```
145152 */
146153 PathCase = '(pathCase)' ,
154+ PathCaseUnderscore = 'PathCase__' ,
147155 /**
148156 * [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to sentence case.
149157 *
150158 * ```
151159 * // If you entered "Lives down BY the River" for __replacerSlot__
152- * __replacerSlot__(sentenceCase)
160+ * __replacerSlot__(sentenceCase) OR __replacerSlot__SentenceCase__
153161 *
154162 * // It would output to:
155163 * Lives down by the river
@@ -162,12 +170,13 @@ enum CaseConverterEnum {
162170 * ```
163171 */
164172 SentenceCase = '(sentenceCase)' ,
173+ SentenceCaseUnderscore = 'SentenceCase__' ,
165174 /**
166175 * [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to snake case.
167176 *
168177 * ```
169178 * // If you entered "Lives down BY the River" for __replacerSlot__
170- * __replacerSlot__(snakeCase)
179+ * __replacerSlot__(snakeCase) OR __replacerSlot__SnakeCase__
171180 *
172181 * // It would output to:
173182 * lives_down_by_the_river
@@ -180,12 +189,13 @@ enum CaseConverterEnum {
180189 * ```
181190 */
182191 SnakeCase = '(snakeCase)' ,
192+ SnakeCaseUnderscore = 'SnakeCase__' ,
183193 /**
184194 * [Case Converter](../index.html#case-converters) that converts [Replacer Slots](../index.html#replacer-slots) to title case.
185195 *
186196 * ```
187197 * // If you entered "Lives down BY the River" for __replacerSlot__
188- * __replacerSlot__(titleCase)
198+ * __replacerSlot__(titleCase) OR __replacerSlot__TitleCase__
189199 *
190200 * // It would output to:
191201 * Lives Down By The River
@@ -198,6 +208,7 @@ enum CaseConverterEnum {
198208 * ```
199209 */
200210 TitleCase = '(titleCase)' ,
211+ TitleCaseUnderscore = 'TitleCase__' ,
201212}
202213
203214export default CaseConverterEnum ;
0 commit comments