UNPKG

vtils

Version:

一个面向业务的 JavaScript/TypeScript 实用程序库。

15 lines 342 B
import { camelCase, upperFirst } from 'lodash-uni'; /** * 转换文本为没有分隔符的大写单词字符串。 * * @param text 要转换的文本 * @returns 返回结果 * @example * ```typescript * pascalCase('test string') * // => TestString * ``` */ export function pascalCase(text) { return upperFirst(camelCase(text)); }