js-algorithms/node_modules/mocha/lib/browser/escape-string-regexp.js

12 lines
232 B
JavaScript
Raw Permalink Normal View History

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