1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-02 20:00:05 +02:00
Files
minifyfromhtml/node_modules/escape-string-regexp
2018-05-05 13:54:07 +02:00
..
2018-05-05 13:54:07 +02:00
2018-05-05 13:54:07 +02:00
2018-05-05 13:54:07 +02:00
2018-05-05 13:54:07 +02: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