(s)
| 653 | // http://docs.closure-library.googlecode.com/git/local_closure_goog_string_string.js.source.html#line1021 |
| 654 | // Prereq: s is a string. |
| 655 | var escapeForRegexp = function(s) { |
| 656 | return s.replace(/([-()\[\]{}+?*.$\^|,:#<!\\])/g, '\\$1'). |
| 657 | replace(/\x08/g, '\\x08'); |
| 658 | }; |
| 659 | |
| 660 | |
| 661 | /** |
no outgoing calls
no test coverage detected