刘琳琳 97c35fdf0d 航汇HHArome小程序容器演示 | 2 ماه پیش | |
---|---|---|
.. | ||
index.js | 2 ماه پیش | |
license | 2 ماه پیش | |
package.json | 2 ماه پیش | |
readme.md | 2 ماه پیش |
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