UNPKG

create-iking-admin

Version:

金合技术中台脚手架

14 lines (12 loc) 276 B
export function useString() { function toCamelCase(str: string): string { return str.replace(/_+(.)/g, (_, chr) => { return chr.toUpperCase() }).replace(/^./, (chr) => { return chr.toLowerCase() }) } return { toCamelCase, } }