jsdoc/node_modules/escape-string-regexp
2014-09-22 15:48:18 -07:00
..
2014-09-22 15:48:18 -07:00
2014-09-22 15:48:18 -07:00

escape-string-regexp Build Status

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