(method, url, async = true)
| 19 | } |
| 20 | |
| 21 | open(method, url, async = true) { |
| 22 | this.method = method; |
| 23 | this.url = url; |
| 24 | this.async = async; |
| 25 | } |
| 26 | |
| 27 | setRequestHeader(key, value) { |
| 28 | this.requestHeaders[key] = value; |
nothing calls this directly
no outgoing calls
no test coverage detected