UNPKG

rsuite

Version:

A suite of react components

7 lines (6 loc) 210 B
/** * @description escape Regular_Expressions special_characters '^$.|*+?{\\[()' */ export default function getSafeRegExpString(str: string) { return str.replace(/([\^\$\.\|\*\+\?\{\\\[\(\)])/g, '\\$1'); }