katwhite 2bb8a30479 i hope this works há 4 anos atrás
..
index.js 2bb8a30479 i hope this works há 4 anos atrás
license 2bb8a30479 i hope this works há 4 anos atrás
package.json 2bb8a30479 i hope this works há 4 anos atrás
readme.md 2bb8a30479 i hope this works 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