Skip to content
主题色
灰色
夜间模式组件大小小(1)中(2)大(3)组件圆角
none
small
medium
large
full
组件缩放90%95%100%105%110%

hyphenate

驼峰转为连线格式

该函数自带缓存,转换过的字符串会被缓存

ts
hyphenate('myButton') // => my-button

capitalize

首字母大写

uncapitalize

首字母小写

stringToPath

将路径字符串转换为数组

text
a.b[c][0].d => ['a', 'b', 'c', '0', 'd']
[0].a => ['0', 'a']
a["b"]['c']['d"] => ['a', 'b', 'c', `'d"`]
a[][b] => ['a', 'b']
a..b => ['a', 'b']
a[[b]]c => ['a', '[b]', 'c']