df7b53a5f2921338a563179c90d8d88df3ba21a2.svn-base 232 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 'use strict'; var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g; module.exports = function (str) { if (typeof str !== 'string') { throw new TypeError('Expected a string'); } return str.replace(matchOperatorsRe, '\\$&'); };