Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi | hace 6 años | |
---|---|---|
.. | ||
index.js | hace 6 años | |
license | hace 6 años | |
package.json | hace 6 años | |
readme.md | hace 6 años |
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