CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
strings.d.ts17 linesDownload Raw Back to misc
1/**2 * Convert string to camelCase3 */4declare function camelize(str: string): string;5/**6 * Convert string to PascaleCase7 */8declare function pascalize(str: string): string;9/**10 * Convert camelCase string to kebab-case11 */12declare function camelToKebab(key: string): string;13/**14 * Convert camelCase string to snake-case15 */16declare function snakelize(str: string): string;17export { camelToKebab, camelize, pascalize, snakelize };
basant307/AI_Governance_Project · CoolFace