Opal-Estate-Pro/node_modules/escape-string-regexp/index.js
2019-09-13 11:27:52 +07:00

12 lines
226 B
JavaScript
Executable File

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