mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-10 00:21:19 +00:00
escape-string-regexp 
Escape RegExp special characters
Install
$ npm install --save escape-string-regexp
Usage
var escapeStringRegexp = require('escape-string-regexp');
var escapedString = escapeStringRegexp('how much $ for a unicorn?');
//=> how much \$ for a unicorn\?
new RegExp(escapedString);
License
MIT © Sindre Sorhus