Dailin 415ba84223 | преди 3 години | ||
---|---|---|---|
.. | |||
index.js | преди 3 години | ||
license | преди 3 години | ||
package.json | преди 3 години | ||
readme.md | преди 3 години |
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