File "camelToKebab.ts"
Full path: /home/fsibplc/public_html/sommilito-bank2/splide-4.1.3/src/js/utils/string/camelToKebab/camelToKebab.ts
File
size: 251 B (251 B bytes)
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor Back
/**
* 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();
}