大写字母
将字符串或字符串中的所有单词或数组中的所有项目或对象中的所有值大写。
安装
$ npm install --save capitalizer
并在您的文件中
var capitalize = require('capitalizer')
要在浏览器中使用它,请使用 。
用法
将字符串的第一个字母大写:
assert . equal ( capitalize ( 'test' ) , 'Test' )
// or
assert . equal ( capitalize . first ( 'test' ) , 'Test' )
将字符串中的所有单词大写:
assert . equal (
capitalize . all ( 'this is a test sentence' ) ,
'This Is A Test Sentence'
)
将数组中的所有单词大写
1