# toFirstCase(word) ⇒ string

首字母大写

Returns: string -

返回首字母大写


Author: liukun 919590347@qq.com

Param Type Description
word string

要转换的单词

Example

import { toFirstCase } from '@wont/utils'
toFirstCase('WORD')  // returns Word
toFirstCase('word')  // returns Word
toFirstCase('woRd')  // returns Word