jsdoc/node_modules/escape-string-regexp
Jeff Williams a2ce6a79ad update dependencies
Includes patch from @TimothyGu to rhino/os.js and rhino/rhino-shim.js.
2015-01-22 09:00:32 -08:00
..
2014-09-22 15:48:18 -07:00
2015-01-22 09:00:32 -08: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