Pibd-21_Ievlewa_M.D._Intern.../node_modules/escape-string-regexp
2023-12-10 21:07:47 +03:00
..
index.js lab3(+catalog) 2023-12-10 21:07:47 +03:00
license lab3(+catalog) 2023-12-10 21:07:47 +03:00
package.json lab3(+catalog) 2023-12-10 21:07:47 +03:00
readme.md lab3(+catalog) 2023-12-10 21:07:47 +03:00

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