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