bpms_site/.svn/pristine/3b/3b1bcd0d5b142b35d5b422a1c552c5bd6d26779a.svn-base
2025-11-02 16:38:49 +03:30

16 lines
612 B
Plaintext

/**
* Polyfills the `Headers.getAll(name)` method so it'll work in the edge
* runtime.
*/ if (!("getAll" in Headers.prototype)) {
// @ts-expect-error - this is polyfilling this method so it doesn't exist yet
Headers.prototype.getAll = function(name) {
name = name.toLowerCase();
if (name !== "set-cookie") throw new Error("Headers.getAll is only supported for Set-Cookie header");
const headers = [
...this.entries()
].filter(([key])=>key === name);
return headers.map(([, value])=>value);
};
}
//# sourceMappingURL=node-polyfill-headers.js.map