UNPKG

@ryusei/code

Version:

<div align="center"> <a href="https://code.ryuseijs.com"> <img alt="RyuseiCode" src="https://code.ryuseijs.com/images/svg/logo.svg" width="70"> </a>

9 lines (8 loc) 259 B
/** * 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(); }