Files
old-cto-as-you-go/CTOAsYouGo/node_modules/escape-string-regexp/index.js
2023-07-05 11:02:15 +02: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, '\\$&');
};