()
| 46 | } |
| 47 | |
| 48 | getQuery() { |
| 49 | // Grab fragment after first "?" |
| 50 | var match = this._url.match(/\?(.*)/); |
| 51 | |
| 52 | if (match === null || !match[1]) { |
| 53 | return {}; |
| 54 | } |
| 55 | |
| 56 | return decode(match[1]); |
| 57 | } |
| 58 | |
| 59 | getHostname() { |
| 60 | var hostname = null; |
no outgoing calls
no test coverage detected