Chunte's picture
Chunte HF staff
Upload 1904 files
5de1c56 verified
raw
history blame contribute delete
No virus
226 Bytes
'use strict';
var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
module.exports = function (str) {
if (typeof str !== 'string') {
throw new TypeError('Expected a string');
}
return str.replace(matchOperatorsRe, '\\$&');
};