MCPcopy Create free account
hub / github.com/Barrior/JParticles / upperFirst

Function upperFirst

src/utils/str-num.ts:27–29  ·  view source on GitHub ↗
(str: string)

Source from the content-addressed store, hash-verified

25 * 将字符串首字母转换成大写
26 */
27export function upperFirst(str: string): string {
28 return str[0].toUpperCase() + str.substring(1)
29}

Callers 2

str-num.spec.tsFile · 0.90
renderMaskModeFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected