webpack/test/helpers/regexEscape.js

4 lines
143 B
JavaScript

module.exports = function regexEscape(string) {
return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string
};