Home > utils > constantCase
转换文本为大写字符串,单词之间带有下划线。
Signature:
export declare function constantCase<T extends string>(text: T): ConstantCase<T>;
Parameter | Type | Description |
---|---|---|
text | T | 要转换的文本 |
Returns:
ConstantCase<T>
返回结果
constantCase('test string')
// => TEST_STRING