(s)
| 848 | // http://docs.closure-library.googlecode.com/git/local_closure_goog_string_string.js.source.html#line1021 |
| 849 | // Prereq: s is a string. |
| 850 | var escapeForRegexp = function(s) { |
| 851 | return s |
| 852 | .replace(/([-()[\]{}+?*.$^|,:#<!\\])/g, '\\$1') |
| 853 | // eslint-disable-next-line no-control-regex |
| 854 | .replace(/\x08/g, '\\x08'); |
| 855 | }; |
| 856 | |
| 857 | |
| 858 | /** |
no outgoing calls
no test coverage detected