sensordb2 e64a8defe5 3.17 | há 1 ano atrás | |
---|---|---|
.. | ||
index.js | há 1 ano atrás | |
license | há 1 ano atrás | |
package.json | há 1 ano atrás | |
readme.md | há 1 ano atrás |
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