setup-node/node_modules/escape-string-regexp/index.js
eric sciple 422b9fdb15 .
2020-01-24 12:21:24 -05:00

11 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, '\\$&');
};