yrik 0fb20a58e3 提交 há 4 anos atrás
..
index.js eec7f449c9 first commit há 4 anos atrás
license eec7f449c9 first commit há 4 anos atrás
package.json 0fb20a58e3 提交 há 4 anos atrás
readme.md eec7f449c9 first commit há 4 anos atrás

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