js-algorithms/node_modules/mocha/lib/browser/escape-string-regexp.js
2015-07-24 11:14:18 +04:30

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