mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
* feat(markdown-vetur): 支持生成 attributes.json 的 options 属性 * fix(markdown-vetur): 没有可选值不添加 options 属性
29 lines
717 B
TypeScript
29 lines
717 B
TypeScript
// myName -> my-name
|
|
export function toKebabCase(input: string): string {
|
|
return input.replace(
|
|
/[A-Z]/g,
|
|
(val, index) => (index === 0 ? '' : '-') + val.toLowerCase()
|
|
);
|
|
}
|
|
|
|
// name `v2.0.0` -> name
|
|
export function removeVersion(str: string) {
|
|
return str.replace(/`(\w|\.)+`/g, '').trim();
|
|
}
|
|
|
|
// *boolean* -> boolean
|
|
// _boolean_ -> boolean
|
|
export function formatType(type: string) {
|
|
return type.replace(/(^(\*|_))|((\*|_)$)/g, '');
|
|
}
|
|
|
|
export function normalizePath(path: string): string {
|
|
return path.replace(/\\/g, '/');
|
|
}
|
|
|
|
// `default` `primary` -> ['default', 'primary']
|
|
export function formatOptions(options?: string) {
|
|
if (!options) return []
|
|
return options.replace(/`/g, '').split(' ')
|
|
}
|