José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | преди 4 години | |
---|---|---|
.. | ||
index.js | преди 4 години | |
license | преди 4 години | |
package.json | преди 4 години | |
readme.md | преди 4 години |
Escape RegExp special characters
$ npm install --save escape-string-regexp
const escapeStringRegexp = require('escape-string-regexp');
const escapedString = escapeStringRegexp('how much $ for a unicorn?');
//=> 'how much \$ for a unicorn\?'
new RegExp(escapedString);
MIT © Sindre Sorhus