1
0
Fork 0
arangodb/js/node/node_modules/mocha/lib/browser/escape-string-regexp.js

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