(s)
| 772 | // http://docs.closure-library.googlecode.com/git/local_closure_goog_string_string.js.source.html#line1021 |
| 773 | // Prereq: s is a string. |
| 774 | var escapeForRegexp = function(s) { |
| 775 | return s.replace(/([-()\[\]{}+?*.$\^|,:#<!\\])/g, '\\$1'). |
| 776 | replace(/\x08/g, '\\x08'); |
| 777 | }; |
| 778 | |
| 779 | |
| 780 | /** |
no outgoing calls
no test coverage detected