(s)
| 751 | // http://docs.closure-library.googlecode.com/git/local_closure_goog_string_string.js.source.html#line1021 |
| 752 | // Prereq: s is a string. |
| 753 | var escapeForRegexp = function(s) { |
| 754 | return s.replace(/([-()\[\]{}+?*.$\^|,:#<!\\])/g, '\\$1'). |
| 755 | replace(/\x08/g, '\\x08'); |
| 756 | }; |
| 757 | |
| 758 | |
| 759 | /** |
no outgoing calls
no test coverage detected