Dailin 415ba84223 | пре 3 година | ||
---|---|---|---|
.. | |||
index.js | пре 3 година | ||
license | пре 3 година | ||
package.json | пре 3 година | ||
readme.md | пре 3 година |
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