kaguranana-birthday-project/node_modules/escape-string-regexp
ameyoyo 9a8113aca4 initial 2021-12-12 18:49:32 -08:00
..
index.js initial 2021-12-12 18:49:32 -08:00
license initial 2021-12-12 18:49:32 -08:00
package.json initial 2021-12-12 18:49:32 -08:00
readme.md initial 2021-12-12 18:49:32 -08:00

readme.md

escape-string-regexp Build Status

Escape RegExp special characters

Install

$ npm install --save escape-string-regexp

Usage

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