1
0
CompleteNodeJS/notes-app/node_modules/escape-string-regexp/index.js
Jason Williams 6528d7204a Section 20
2019-08-11 12:15:16 -06:00

12 lines
226 B
JavaScript

'use strict';
var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
module.exports = function (str) {
if (typeof str !== 'string') {
throw new TypeError('Expected a string');
}
return str.replace(matchOperatorsRe, '\\$&');
};