You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
732 B
17 lines
732 B
import * as XMLHttpRequestModule from "xmlhttprequest-ssl"; |
|
import { BaseXHR, Request } from "./polling-xhr.js"; |
|
const XMLHttpRequest = XMLHttpRequestModule.default || XMLHttpRequestModule; |
|
/** |
|
* HTTP long-polling based on the `XMLHttpRequest` object provided by the `xmlhttprequest-ssl` package. |
|
* |
|
* Usage: Node.js, Deno (compat), Bun (compat) |
|
* |
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest |
|
*/ |
|
export class XHR extends BaseXHR { |
|
request(opts = {}) { |
|
var _a; |
|
Object.assign(opts, { xd: this.xd, cookieJar: (_a = this.socket) === null || _a === void 0 ? void 0 : _a._cookieJar }, this.opts); |
|
return new Request((opts) => new XMLHttpRequest(opts), this.uri(), opts); |
|
} |
|
}
|
|
|