Escape RegExp special characters
$ npm install --save escape-string-regexp
var escapeStringRegexp = require('escape-string-regexp'); var escapedString = escapeStringRegexp('how much $ for a unicorn?'); //=> how much \$ for a unicorn\? new RegExp(escapedString);
MIT © Sindre Sorhus