UNPKG

xiaohejs

Version:

🎈 小何同学的JavaScript工具箱

11 lines (10 loc) 320 B
import { NullableString } from "../types.js"; /** * 下划线风格转驼峰风格字符串 * * @since 0.0.1 * @param [str] 下划线风格字符串 * @returns {NullableString} 驼峰风格字符串 */ declare function underline2hump(str: NullableString): NullableString; export { underline2hump };