@@ -170,6 +170,16 @@ this <code>00010000 00000100</code>. This means that <code>'A'</code> (<
170170## stringMutilator/charCase
171171Functions for manipulating the letter case of strings.
172172
173+
174+ * [ stringMutilator/charCase] ( #module_stringMutilator/charCase )
175+ * [ ~ invert(string, [ every] )] ( #module_stringMutilator/charCase..invert ) ⇒ <code >string</code >
176+ * [ ~ snakeCase(string)] ( #module_stringMutilator/charCase..snakeCase ) ⇒ <code >string</code >
177+ * [ ~ camelCase(string)] ( #module_stringMutilator/charCase..camelCase ) ⇒ <code >string</code >
178+ * [ ~ kebabCase(string)] ( #module_stringMutilator/charCase..kebabCase ) ⇒ <code >string</code >
179+ * [ ~ dotCase(string)] ( #module_stringMutilator/charCase..dotCase ) ⇒ <code >string</code >
180+ * [ ~ pascalCase(string)] ( #module_stringMutilator/charCase..pascalCase ) ⇒ <code >string</code >
181+ * [ ~ capitalize(string)] ( #module_stringMutilator/charCase..capitalize ) ⇒ <code >string</code >
182+
173183<a name =" module_stringMutilator/charCase..invert " ></a >
174184
175185### stringMutilator/charCase~ invert(string, [ every] ) ⇒ <code >string</code >
@@ -187,6 +197,102 @@ Invert the case of letters in a string.
187197stringMutilator .charCase .invert (' Hello World!' );
188198// > 'hELLO wORLD!'
189199```
200+ <a name =" module_stringMutilator/charCase..snakeCase " ></a >
201+
202+ ### stringMutilator/charCase~ snakeCase(string) ⇒ <code >string</code >
203+ Change the case of given string to "Snake Case".
204+
205+ ** Kind** : inner method of [ <code >stringMutilator/charCase</code >] ( #module_stringMutilator/charCase )
206+
207+ | Param | Type |
208+ | --- | --- |
209+ | string | <code >string</code > |
210+
211+ ** Example**
212+ ``` js
213+ stringMutilator .charCase .snakeCase (' Hello World' );
214+ // > 'hello_world'
215+ ```
216+ <a name =" module_stringMutilator/charCase..camelCase " ></a >
217+
218+ ### stringMutilator/charCase~ camelCase(string) ⇒ <code >string</code >
219+ Change the case of the given string to "Camel Case".
220+
221+ ** Kind** : inner method of [ <code >stringMutilator/charCase</code >] ( #module_stringMutilator/charCase )
222+
223+ | Param | Type |
224+ | --- | --- |
225+ | string | <code >string</code > |
226+
227+ ** Example**
228+ ``` js
229+ stringMutilator .charCase .camelCase (' Hello World' );
230+ // > 'helloWorld'
231+ ```
232+ <a name =" module_stringMutilator/charCase..kebabCase " ></a >
233+
234+ ### stringMutilator/charCase~ kebabCase(string) ⇒ <code >string</code >
235+ Change the case of the given string to "Kebap Case".
236+
237+ ** Kind** : inner method of [ <code >stringMutilator/charCase</code >] ( #module_stringMutilator/charCase )
238+
239+ | Param | Type |
240+ | --- | --- |
241+ | string | <code >string</code > |
242+
243+ ** Example**
244+ ``` js
245+ stringMutilator .charCase .kebabCase (' Hello World' );
246+ // > 'hello-world'
247+ ```
248+ <a name =" module_stringMutilator/charCase..dotCase " ></a >
249+
250+ ### stringMutilator/charCase~ dotCase(string) ⇒ <code >string</code >
251+ Change the case of the given string to "Dot Case".
252+
253+ ** Kind** : inner method of [ <code >stringMutilator/charCase</code >] ( #module_stringMutilator/charCase )
254+
255+ | Param | Type |
256+ | --- | --- |
257+ | string | <code >string</code > |
258+
259+ ** Example**
260+ ``` js
261+ stringMutilator .charCase .dotCase (' Hello World' );
262+ // > 'hello.world'
263+ ```
264+ <a name =" module_stringMutilator/charCase..pascalCase " ></a >
265+
266+ ### stringMutilator/charCase~ pascalCase(string) ⇒ <code >string</code >
267+ Change the case of the given string to "Pascal Case".
268+
269+ ** Kind** : inner method of [ <code >stringMutilator/charCase</code >] ( #module_stringMutilator/charCase )
270+
271+ | Param | Type |
272+ | --- | --- |
273+ | string | <code >string</code > |
274+
275+ ** Example**
276+ ``` js
277+ stringMutilator .charCase .pascalCase (' Hello World' );
278+ // > 'HelloWorld'
279+ ```
280+ <a name =" module_stringMutilator/charCase..capitalize " ></a >
281+
282+ ### stringMutilator/charCase~ capitalize(string) ⇒ <code >string</code >
283+ Change the case of the given string to "Capitalized".
284+
285+ ** Kind** : inner method of [ <code >stringMutilator/charCase</code >] ( #module_stringMutilator/charCase )
286+
287+ | Param | Type |
288+ | --- | --- |
289+ | string | <code >string</code > |
290+
291+ ** Example**
292+ ``` js
293+ stringMutilator .charCase .capitalize (' hello world' );
294+ // > 'Hello World'
295+ ```
190296<a name =" module_stringMutilator/compressor " ></a >
191297
192298## stringMutilator/compressor
@@ -613,6 +719,12 @@ $ string-mutilator --help
613719 compressor.pack
614720 compressor.unpack
615721 compressor.signature
722+ charCase.snakeCase
723+ charCase.camelCase
724+ charCase.kebabCase
725+ charCase.dotCase
726+ charCase.pascalCase
727+ charCase.capitalize
616728 flipBits
617729 gobbledygook
618730 jumble
0 commit comments