Dailin 415ba84223 | há 3 anos | ||
---|---|---|---|
.. | |||
index.js | há 3 anos | ||
license | há 3 anos | ||
package.json | há 3 anos | ||
readme.md | há 3 anos |
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