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