rabin ef108495d0 edit | před 7 měsíci | |
---|---|---|
.. | ||
index.js | před 7 měsíci | |
license | před 7 měsíci | |
package.json | před 7 měsíci | |
readme.md | před 7 měsíci |
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