Skip to content

Commit 65b0711

Browse files
[autofix.ci] apply automated fixes
1 parent 9407436 commit 65b0711

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/blog/2024-01-31-january-monthly-updates.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,13 @@ This release adds two new case converters: `flatCase` and `trainCase`.
189189
`flatCase` converts a string to a lower case string removing dashes, underscores, slashes and dots
190190

191191
```js
192-
flatCase('foo-barBaz'); //=> 'foobarbaz'
192+
flatCase('foo-barBaz') // => 'foobarbaz'
193193
```
194194

195195
`trainCase` converts a string to a capitalized string with dashes separating words
196196

197197
```js
198-
trainCase('fooBarBaz'); //=> 'Foo-Bar-Baz'
198+
trainCase('fooBarBaz') // => 'Foo-Bar-Baz'
199199
```
200200

201201
### enhancements

0 commit comments

Comments
 (0)