Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
sommilito-bank2
/
splide-4.1.3
/
src
/
js
/
utils
/
string
/
camelToKebab
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
/** * Converts the provided string in the camel case to the kebab case. * * @param string - A string to convert. */ export function camelToKebab( string: string ): string { return string.replace( /([a-z0-9])([A-Z])/g, '$1-$2' ).toLowerCase(); }