Pibd-21_Alekseev_I.S._Inter.../IP/node_modules/escape-string-regexp/index.js
VanyaAlekseev ccc3e790bb lab2
2023-12-03 16:59:28 +04: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, '\\$&');
};