UNPKG

rsuite

Version:

A suite of react components

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