Files
mooknote_web/node_modules/progress-webpack-plugin/node_modules/escape-string-regexp/readme.md
DelLevin-Home a4a326401e 1
2026-03-10 22:06:32 +08:00

552 B

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