Update JS collections

This commit is contained in:
Angelos Chalaris
2023-05-14 22:36:21 +03:00
parent e3159429e5
commit 2ddf829f35
32 changed files with 58 additions and 58 deletions

View File

@ -0,0 +1,20 @@
slug: js/string-casing
name: JavaScript String Casing
featured: true
snippetIds:
- js/s/to-camel-case
- js/s/to-snake-case
- js/s/to-kebab-case
- js/s/to-title-case
- js/s/to-sentence-case
- js/s/to-pascal-case
- js/s/from-camel-case
splash: tablet.png
description: >-
Converting between string casing formats is common, yet tiresome to do by
hand. This collection of snippets will help you convert between the most
common string casing formats using JavaScript and a sprinkle of regular
expressions.
shortDescription: >-
Convert between the most common string casing formats with pure JavaScript and
a sprinkle of regular expressions.