Skip to main content

kebab2Pascal

type Kebab2PascalType = (str: string) => string

kebab-case 格式的字符串转换为 PascalCase 格式的字符串。

参数

  • str: string:需要进行转换的字符串。

返回

返回一个 string 类型值,为 PascalCase 格式的字符串。

示例

import { kebab2Pascal } from "luoye-tools"

const resultStr = kebab2Pascal("luoye-tools")
console.log(resultStr) // => 打印 "LuoyeTools"