Dailin 415ba84223 | il y a 3 ans | ||
---|---|---|---|
.. | |||
index.js | il y a 3 ans | ||
license | il y a 3 ans | ||
package.json | il y a 3 ans | ||
readme.md | il y a 3 ans |
Escape RegExp special characters
$ npm install --save escape-string-regexp
const escapeStringRegexp = require('escape-string-regexp');
const escapedString = escapeStringRegexp('how much $ for a unicorn?');
//=> 'how much \$ for a unicorn\?'
new RegExp(escapedString);
MIT © Sindre Sorhus