1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-20 17:25:28 +00:00
notes/node_modules/escape-string-regexp/readme.md

28 lines
552 B
Markdown
Raw Normal View History

2017-03-09 18:16:08 +00:00
# escape-string-regexp [![Build Status](https://travis-ci.org/sindresorhus/escape-string-regexp.svg?branch=master)](https://travis-ci.org/sindresorhus/escape-string-regexp)
> Escape RegExp special characters
## Install
```
$ npm install --save escape-string-regexp
```
## Usage
```js
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](http://sindresorhus.com)