UNPKG

base-ui

Version:

A component library for Better Vue developmemt

9 lines (7 loc) 270 B
export const escapeRegExp = (string) => { const reRegExpChar = /[\\^$.*+?()[\]{}|]/g; const reHasRegExpChar = new RegExp(reRegExpChar.source); return string && reHasRegExpChar.test(string) ? string.replace(reRegExpChar, '\\$&') : string; };