(url)
| 76 | this function is used on URLs passed in the settings to determine whether we need a ? or an & as a separator |
| 77 | */ |
| 78 | function url_sep(url) { |
| 79 | return url.match(/\?/) ? "&" : "?"; |
| 80 | } |
| 81 | |
| 82 | /* |
| 83 | listener for commands from main thread to this worker. |
no outgoing calls
no test coverage detected