peach a19a732be8 commit message | před 2 roky | |
---|---|---|
.. | ||
index.js | před 2 roky | |
license | před 2 roky | |
package.json | před 2 roky | |
readme.md | před 2 roky |
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