UNPKG

rsuite

Version:

A suite of react components

8 lines 256 B
'use client'; /** * @description escape Regular_Expressions special_characters '^$.|*+?{\\[()' */ export function getSafeRegExpString(str) { const specialChars = '\\^$.|?*+()[]{}'; return str.replace(new RegExp(`([${specialChars}])`, 'g'), '\\$1'); }