Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1x | import { camelCase, upperFirst } from 'lodash-uni'
import { PascalCase } from '../types'
/**
* 转换文本为没有分隔符的大写单词字符串。
*
* @param text 要转换的文本
* @returns 返回结果
* @example
* ```typescript
* pascalCase('test string')
* // => TestString
* ```
*/
export function pascalCase<T extends string>(text: T): PascalCase<T> {
return upperFirst(camelCase(text)) as any
}
|