A tiny function for escaping a string to be used as the source in a regex.
npm install string-escape-regex
import escape from 'string-escape-regex';
// Let's escape a string to be used in a regex
escape ( 'foo()' ); // => 'foo\\(\\)'
MIT © Fabio Spampinato