vtils

Home > utils > constantCase

constantCase() function

转换文本为大写字符串,单词之间带有下划线。

Signature:

export declare function constantCase<T extends string>(text: T): ConstantCase<T>;

Parameters

Parameter Type Description
text T 要转换的文本

Returns:

ConstantCase<T>

返回结果

Example

constantCase('test string')
// => TEST_STRING