blob: 7834bf9b24c481efa379fc07679c2d8e3ba85247 [file] [log] [blame]
Yang Guo4fd355c2019-09-19 10:59:03 +02001'use strict';
2
3var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
4
5module.exports = function (str) {
6 if (typeof str !== 'string') {
7 throw new TypeError('Expected a string');
8 }
9
10 return str.replace(matchOperatorsRe, '\\$&');
11};