mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 02:54:19 +00:00

PR-URL: https://github.com/nodejs/node/pull/3310 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
28 lines
548 B
Markdown
28 lines
548 B
Markdown
# escape-string-regexp [](https://travis-ci.org/sindresorhus/escape-string-regexp)
|
|
|
|
> Escape RegExp special characters
|
|
|
|
|
|
## Install
|
|
|
|
```sh
|
|
$ npm install --save escape-string-regexp
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```js
|
|
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](http://sindresorhus.com)
|