sxoinas12 82e781b8aa Graph & Tree | 5 سال پیش | |
---|---|---|
.. | ||
index.js | 5 سال پیش | |
license | 5 سال پیش | |
package.json | 5 سال پیش | |
readme.md | 5 سال پیش |
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