mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
10 lines
210 B
TypeScript
10 lines
210 B
TypeScript
|
export {
|
||
|
camelize,
|
||
|
capitalize,
|
||
|
hyphenate,
|
||
|
hyphenate as kebabCase, // alias
|
||
|
} from '@vue/shared'
|
||
|
|
||
|
export const escapeRegexpString = (value = '') =>
|
||
|
String(value).replace(/[|\\{}()[\]^$+*?.]/g, '\\$&')
|