huituanxueqian 7740728225 commit il y a 1 an
..
index.js 7740728225 commit il y a 1 an
license 7740728225 commit il y a 1 an
package.json 7740728225 commit il y a 1 an
readme.md 7740728225 commit il y a 1 an

readme.md

escape-string-regexp Build Status

Escape RegExp special characters

Install

$ npm install --save escape-string-regexp

Usage

const escapeStringRegexp = require('escape-string-regexp');

const escapedString = escapeStringRegexp('how much $ for a unicorn?');
//=> 'how much \$ for a unicorn\?'

new RegExp(escapedString);

License

MIT © Sindre Sorhus