diff --git a/Build/Sources/TypeScript/core/Resources/Public/TypeScript/Ajax/AjaxRequest.ts b/Build/Sources/TypeScript/core/Resources/Public/TypeScript/Ajax/AjaxRequest.ts
index 6d68e61cf2c70cc4cb746d21c09e1a48ccc0de5e..e0f38c4eb56bb96635b4ecd20480e141b2ecda43 100644
--- a/Build/Sources/TypeScript/core/Resources/Public/TypeScript/Ajax/AjaxRequest.ts
+++ b/Build/Sources/TypeScript/core/Resources/Public/TypeScript/Ajax/AjaxRequest.ts
@@ -77,7 +77,7 @@ class AjaxRequest {
         return AjaxRequest.createQueryString(val, pKey);
       }
 
-      return `${pKey}=${encodeURIComponent(`${val}`)}`
+      return `${pKey}=${encodeURIComponent(val)}`
     }).join('&')
   }
 
@@ -118,13 +118,13 @@ class AjaxRequest {
   /**
    * Executes a (by default uncached) POST request
    *
-   * @param {GenericKeyValue} data
+   * @param {string | GenericKeyValue} data
    * @param {RequestInit} init
    * @return {Promise<Response>}
    */
-  public async post(data: GenericKeyValue, init: RequestInit = {}): Promise<AjaxResponse> {
+  public async post(data: string | GenericKeyValue, init: RequestInit = {}): Promise<AjaxResponse> {
     const localDefaultOptions: RequestInit = {
-      body: AjaxRequest.transformToFormData(data),
+      body: typeof data === 'string' ? data : AjaxRequest.transformToFormData(data),
       cache: 'no-cache',
       method: 'POST',
     };
@@ -136,13 +136,13 @@ class AjaxRequest {
   /**
    * Executes a (by default uncached) PUT request
    *
-   * @param {GenericKeyValue} data
+   * @param {string | GenericKeyValue} data
    * @param {RequestInit} init
    * @return {Promise<Response>}
    */
-  public async put(data: GenericKeyValue, init: RequestInit = {}): Promise<AjaxResponse> {
+  public async put(data: string | GenericKeyValue, init: RequestInit = {}): Promise<AjaxResponse> {
     const localDefaultOptions: RequestInit = {
-      body: AjaxRequest.transformToFormData(data),
+      body: typeof data === 'string' ? data : AjaxRequest.transformToFormData(data),
       cache: 'no-cache',
       method: 'PUT',
     };
@@ -154,11 +154,11 @@ class AjaxRequest {
   /**
    * Executes a regular DELETE request
    *
-   * @param {GenericKeyValue} data
+   * @param {string | GenericKeyValue} data
    * @param {RequestInit} init
    * @return {Promise<Response>}
    */
-  public async delete(data: GenericKeyValue = {}, init: RequestInit = {}): Promise<AjaxResponse> {
+  public async delete(data: string | GenericKeyValue = {}, init: RequestInit = {}): Promise<AjaxResponse> {
     const localDefaultOptions: RequestInit = {
       cache: 'no-cache',
       method: 'DELETE',
@@ -166,6 +166,8 @@ class AjaxRequest {
 
     if (typeof data === 'object' && Object.keys(data).length > 0) {
       localDefaultOptions.body = AjaxRequest.transformToFormData(data);
+    } else if (typeof data === 'string') {
+      localDefaultOptions.body = data;
     }
 
     const response = await this.send({...localDefaultOptions, ...init});
diff --git a/Build/Sources/TypeScript/core/Tests/Ajax/AjaxRequestTest.ts b/Build/Sources/TypeScript/core/Tests/Ajax/AjaxRequestTest.ts
index 42d7a07d902aca06d4e8d93f205400294c5db48b..cf5fa0c432a09a3c5ccb3d54c8bda64d403e1e01 100644
--- a/Build/Sources/TypeScript/core/Tests/Ajax/AjaxRequestTest.ts
+++ b/Build/Sources/TypeScript/core/Tests/Ajax/AjaxRequestTest.ts
@@ -32,7 +32,7 @@ describe('TYPO3/CMS/Core/Ajax/AjaxRequest', (): void => {
     expect(window.fetch).toHaveBeenCalledWith('https://example.com/', jasmine.objectContaining({method: 'GET'}));
   });
 
-  it('sends POST request', (): void => {
+  it('sends POST request with object as payload', (): void => {
     const payload = {foo: 'bar', bar: 'baz', nested: {works: 'yes'}};
     const expected = new FormData();
     expected.set('foo', 'bar');
@@ -42,9 +42,26 @@ describe('TYPO3/CMS/Core/Ajax/AjaxRequest', (): void => {
     expect(window.fetch).toHaveBeenCalledWith('https://example.com/', jasmine.objectContaining({method: 'POST', body: expected}));
   });
 
-  it('sends PUT request', (): void => {
-    (new AjaxRequest('https://example.com')).put({});
-    expect(window.fetch).toHaveBeenCalledWith('https://example.com/', jasmine.objectContaining({method: 'PUT'}));
+  it('sends POST request with string as payload', (): void => {
+    const payload = JSON.stringify({foo: 'bar', bar: 'baz', nested: {works: 'yes'}});
+    (new AjaxRequest('https://example.com')).post(payload);
+    expect(window.fetch).toHaveBeenCalledWith('https://example.com/', jasmine.objectContaining({method: 'POST', body: payload}));
+  });
+
+  it('sends PUT request with object as payload', (): void => {
+    const payload = {foo: 'bar', bar: 'baz', nested: {works: 'yes'}};
+    const expected = new FormData();
+    expected.set('foo', 'bar');
+    expected.set('bar', 'baz');
+    expected.set('nested[works]', 'yes');
+    (new AjaxRequest('https://example.com')).put(payload);
+    expect(window.fetch).toHaveBeenCalledWith('https://example.com/', jasmine.objectContaining({method: 'PUT', body: expected}));
+  });
+
+  it('sends PUT request with string as payload', (): void => {
+    const payload = JSON.stringify({foo: 'bar', bar: 'baz', nested: {works: 'yes'}});
+    (new AjaxRequest('https://example.com')).put(payload);
+    expect(window.fetch).toHaveBeenCalledWith('https://example.com/', jasmine.objectContaining({method: 'PUT', body: payload}));
   });
 
   it('sends DELETE request', (): void => {
@@ -52,6 +69,12 @@ describe('TYPO3/CMS/Core/Ajax/AjaxRequest', (): void => {
     expect(window.fetch).toHaveBeenCalledWith('https://example.com/', jasmine.objectContaining({method: 'DELETE'}));
   });
 
+  it('sends DELETE request with string as payload', (): void => {
+    const payload = JSON.stringify({foo: 'bar', bar: 'baz', nested: {works: 'yes'}});
+    (new AjaxRequest('https://example.com')).delete(payload);
+    expect(window.fetch).toHaveBeenCalledWith('https://example.com/', jasmine.objectContaining({method: 'DELETE', body: payload}));
+  });
+
   describe('send GET requests', (): void => {
     function* responseDataProvider(): any {
       yield [
diff --git a/typo3/sysext/core/Resources/Public/JavaScript/Ajax/AjaxRequest.js b/typo3/sysext/core/Resources/Public/JavaScript/Ajax/AjaxRequest.js
index 0bed5d3bfb694a70ff3539dd373303750e73ac93..04cdb4f4b0e2687b5fd5f9d770ca78708113cc58 100644
--- a/typo3/sysext/core/Resources/Public/JavaScript/Ajax/AjaxRequest.js
+++ b/typo3/sysext/core/Resources/Public/JavaScript/Ajax/AjaxRequest.js
@@ -10,4 +10,4 @@
  *
  * The TYPO3 project - inspiring people to share!
  */
-var __awaiter=this&&this.__awaiter||function(t,e,n,r){return new(n||(n=Promise))((function(s,o){function i(t){try{c(r.next(t))}catch(t){o(t)}}function a(t){try{c(r.throw(t))}catch(t){o(t)}}function c(t){var e;t.done?s(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(i,a)}c((r=r.apply(t,e||[])).next())}))};define(["require","exports","../BackwardCompat/JQueryNativePromises","./AjaxResponse","./ResponseError"],(function(t,e,n,r,s){"use strict";class o{constructor(t){this.queryArguments="",this.url=t,this.abortController=new AbortController,n.default.support()}static transformToFormData(t){const e=(t,n="")=>Object.keys(t).reduce((r,s)=>{const o=n.length?n+"[":"",i=n.length?"]":"";return"object"==typeof t[s]?Object.assign(r,e(t[s],o+s+i)):r[o+s+i]=t[s],r},{}),n=e(t),r=new FormData;for(const[t,e]of Object.entries(n))r.set(t,e);return r}static createQueryString(t,e){return"string"==typeof t?t:t instanceof Array?t.join("&"):Object.keys(t).map(n=>{let r=e?`${e}[${n}]`:n,s=t[n];return"object"==typeof s?o.createQueryString(s,r):`${r}=${encodeURIComponent(`${s}`)}`}).join("&")}withQueryArguments(t){const e=this.clone();return e.queryArguments=(""!==e.queryArguments?"&":"")+o.createQueryString(t),e}get(t={}){return __awaiter(this,void 0,void 0,(function*(){const e=yield this.send(Object.assign(Object.assign({},{method:"GET"}),t));return new r.AjaxResponse(e)}))}post(t,e={}){return __awaiter(this,void 0,void 0,(function*(){const n={body:o.transformToFormData(t),cache:"no-cache",method:"POST"},s=yield this.send(Object.assign(Object.assign({},n),e));return new r.AjaxResponse(s)}))}put(t,e={}){return __awaiter(this,void 0,void 0,(function*(){const n={body:o.transformToFormData(t),cache:"no-cache",method:"PUT"},s=yield this.send(Object.assign(Object.assign({},n),e));return new r.AjaxResponse(s)}))}delete(t={},e={}){return __awaiter(this,void 0,void 0,(function*(){const n={cache:"no-cache",method:"DELETE"};"object"==typeof t&&Object.keys(t).length>0&&(n.body=o.transformToFormData(t));const s=yield this.send(Object.assign(Object.assign({},n),e));return new r.AjaxResponse(s)}))}getAbort(){return this.abortController}clone(){return Object.assign(Object.create(this),this)}send(t={}){return __awaiter(this,void 0,void 0,(function*(){let e=new URL(this.url,window.location.origin).toString();if(""!==this.queryArguments){e+=(this.url.includes("?")?"&":"?")+this.queryArguments}const n=yield fetch(e,this.getMergedOptions(t));if(!n.ok)throw new s.ResponseError(n);return n}))}getMergedOptions(t){return Object.assign(Object.assign(Object.assign({},o.defaultOptions),t),{signal:this.abortController.signal})}}return o.defaultOptions={credentials:"same-origin"},o}));
\ No newline at end of file
+var __awaiter=this&&this.__awaiter||function(t,e,n,r){return new(n||(n=Promise))((function(s,o){function i(t){try{c(r.next(t))}catch(t){o(t)}}function a(t){try{c(r.throw(t))}catch(t){o(t)}}function c(t){var e;t.done?s(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(i,a)}c((r=r.apply(t,e||[])).next())}))};define(["require","exports","../BackwardCompat/JQueryNativePromises","./AjaxResponse","./ResponseError"],(function(t,e,n,r,s){"use strict";class o{constructor(t){this.queryArguments="",this.url=t,this.abortController=new AbortController,n.default.support()}static transformToFormData(t){const e=(t,n="")=>Object.keys(t).reduce((r,s)=>{const o=n.length?n+"[":"",i=n.length?"]":"";return"object"==typeof t[s]?Object.assign(r,e(t[s],o+s+i)):r[o+s+i]=t[s],r},{}),n=e(t),r=new FormData;for(const[t,e]of Object.entries(n))r.set(t,e);return r}static createQueryString(t,e){return"string"==typeof t?t:t instanceof Array?t.join("&"):Object.keys(t).map(n=>{let r=e?`${e}[${n}]`:n,s=t[n];return"object"==typeof s?o.createQueryString(s,r):`${r}=${encodeURIComponent(s)}`}).join("&")}withQueryArguments(t){const e=this.clone();return e.queryArguments=(""!==e.queryArguments?"&":"")+o.createQueryString(t),e}get(t={}){return __awaiter(this,void 0,void 0,(function*(){const e=yield this.send(Object.assign(Object.assign({},{method:"GET"}),t));return new r.AjaxResponse(e)}))}post(t,e={}){return __awaiter(this,void 0,void 0,(function*(){const n={body:"string"==typeof t?t:o.transformToFormData(t),cache:"no-cache",method:"POST"},s=yield this.send(Object.assign(Object.assign({},n),e));return new r.AjaxResponse(s)}))}put(t,e={}){return __awaiter(this,void 0,void 0,(function*(){const n={body:"string"==typeof t?t:o.transformToFormData(t),cache:"no-cache",method:"PUT"},s=yield this.send(Object.assign(Object.assign({},n),e));return new r.AjaxResponse(s)}))}delete(t={},e={}){return __awaiter(this,void 0,void 0,(function*(){const n={cache:"no-cache",method:"DELETE"};"object"==typeof t&&Object.keys(t).length>0?n.body=o.transformToFormData(t):"string"==typeof t&&(n.body=t);const s=yield this.send(Object.assign(Object.assign({},n),e));return new r.AjaxResponse(s)}))}getAbort(){return this.abortController}clone(){return Object.assign(Object.create(this),this)}send(t={}){return __awaiter(this,void 0,void 0,(function*(){let e=new URL(this.url,window.location.origin).toString();if(""!==this.queryArguments){e+=(this.url.includes("?")?"&":"?")+this.queryArguments}const n=yield fetch(e,this.getMergedOptions(t));if(!n.ok)throw new s.ResponseError(n);return n}))}getMergedOptions(t){return Object.assign(Object.assign(Object.assign({},o.defaultOptions),t),{signal:this.abortController.signal})}}return o.defaultOptions={credentials:"same-origin"},o}));
\ No newline at end of file
diff --git a/typo3/sysext/core/Tests/JavaScript/Ajax/AjaxRequestTest.js b/typo3/sysext/core/Tests/JavaScript/Ajax/AjaxRequestTest.js
index c7d873c2abe032a5b6f769d44e6f2236644d19dc..5c2e33505cbcecb80664357e094a04904f4dc030 100644
--- a/typo3/sysext/core/Tests/JavaScript/Ajax/AjaxRequestTest.js
+++ b/typo3/sysext/core/Tests/JavaScript/Ajax/AjaxRequestTest.js
@@ -10,4 +10,4 @@
  *
  * The TYPO3 project - inspiring people to share!
  */
-var __awaiter=this&&this.__awaiter||function(e,t,o,a){return new(o||(o=Promise))((function(n,i){function r(e){try{l(a.next(e))}catch(e){i(e)}}function s(e){try{l(a.throw(e))}catch(e){i(e)}}function l(e){var t;e.done?n(e.value):(t=e.value,t instanceof o?t:new o((function(e){e(t)}))).then(r,s)}l((a=a.apply(e,t||[])).next())}))};define(["require","exports","TYPO3/CMS/Core/Ajax/AjaxRequest"],(function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),describe("TYPO3/CMS/Core/Ajax/AjaxRequest",()=>{let e;beforeEach(()=>{const t=new Promise((t,o)=>{e={resolve:t,reject:o}});spyOn(window,"fetch").and.returnValue(t)}),it("sends GET request",()=>{new o("https://example.com").get(),expect(window.fetch).toHaveBeenCalledWith("https://example.com/",jasmine.objectContaining({method:"GET"}))}),it("sends POST request",()=>{const e=new FormData;e.set("foo","bar"),e.set("bar","baz"),e.set("nested[works]","yes"),new o("https://example.com").post({foo:"bar",bar:"baz",nested:{works:"yes"}}),expect(window.fetch).toHaveBeenCalledWith("https://example.com/",jasmine.objectContaining({method:"POST",body:e}))}),it("sends PUT request",()=>{new o("https://example.com").put({}),expect(window.fetch).toHaveBeenCalledWith("https://example.com/",jasmine.objectContaining({method:"PUT"}))}),it("sends DELETE request",()=>{new o("https://example.com").delete(),expect(window.fetch).toHaveBeenCalledWith("https://example.com/",jasmine.objectContaining({method:"DELETE"}))}),describe("send GET requests",()=>{for(let t of function*(){yield["plaintext","foobar huselpusel",{},(e,t)=>{expect("string"==typeof e).toBeTruthy(),expect(e).toEqual(t)}],yield["JSON",JSON.stringify({foo:"bar",baz:"bencer"}),{"Content-Type":"application/json"},(e,t)=>{expect("object"==typeof e).toBeTruthy(),expect(JSON.stringify(e)).toEqual(t)}],yield["JSON with utf-8",JSON.stringify({foo:"bar",baz:"bencer"}),{"Content-Type":"application/json; charset=utf-8"},(e,t)=>{expect("object"==typeof e).toBeTruthy(),expect(JSON.stringify(e)).toEqual(t)}]}()){let[a,n,i,r]=t;it("receives a "+a+" response",t=>{const a=new Response(n,{headers:i});e.resolve(a),new o("https://example.com").get().then(e=>__awaiter(void 0,void 0,void 0,(function*(){const o=yield e.resolve();expect(window.fetch).toHaveBeenCalledWith("https://example.com/",jasmine.objectContaining({method:"GET"})),r(o,n),t()})))})}}),describe("send requests with different input urls",()=>{for(let e of function*(){yield["absolute url with domain","https://example.com",{},"https://example.com/"],yield["absolute url with domain, with query parameter","https://example.com",{foo:"bar",bar:{baz:"bencer"}},"https://example.com/?foo=bar&bar[baz]=bencer"],yield["absolute url without domain","/foo/bar",{},window.location.origin+"/foo/bar"],yield["absolute url without domain, with query parameter","/foo/bar",{foo:"bar",bar:{baz:"bencer"}},window.location.origin+"/foo/bar?foo=bar&bar[baz]=bencer"],yield["relative url without domain","foo/bar",{},window.location.origin+"/foo/bar"],yield["relative url without domain, with query parameter","foo/bar",{foo:"bar",bar:{baz:"bencer"}},window.location.origin+"/foo/bar?foo=bar&bar[baz]=bencer"]}()){let[t,a,n,i]=e;it("with "+t,()=>{new o(a).withQueryArguments(n).get(),expect(window.fetch).toHaveBeenCalledWith(i,jasmine.objectContaining({method:"GET"}))})}}),describe("send requests with query arguments",()=>{for(let e of function*(){yield["single level of arguments",{foo:"bar",bar:"baz"},"https://example.com/?foo=bar&bar=baz"],yield["nested arguments",{foo:"bar",bar:{baz:"bencer"}},"https://example.com/?foo=bar&bar[baz]=bencer"],yield["string argument","hello=world&foo=bar","https://example.com/?hello=world&foo=bar"],yield["array of arguments",["foo=bar","husel=pusel"],"https://example.com/?foo=bar&husel=pusel"]}()){let[t,a,n]=e;it("with "+t,()=>{new o("https://example.com/").withQueryArguments(a).get(),expect(window.fetch).toHaveBeenCalledWith(n,jasmine.objectContaining({method:"GET"}))})}})})}));
\ No newline at end of file
+var __awaiter=this&&this.__awaiter||function(e,t,o,a){return new(o||(o=Promise))((function(n,i){function r(e){try{l(a.next(e))}catch(e){i(e)}}function s(e){try{l(a.throw(e))}catch(e){i(e)}}function l(e){var t;e.done?n(e.value):(t=e.value,t instanceof o?t:new o((function(e){e(t)}))).then(r,s)}l((a=a.apply(e,t||[])).next())}))};define(["require","exports","TYPO3/CMS/Core/Ajax/AjaxRequest"],(function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),describe("TYPO3/CMS/Core/Ajax/AjaxRequest",()=>{let e;beforeEach(()=>{const t=new Promise((t,o)=>{e={resolve:t,reject:o}});spyOn(window,"fetch").and.returnValue(t)}),it("sends GET request",()=>{new o("https://example.com").get(),expect(window.fetch).toHaveBeenCalledWith("https://example.com/",jasmine.objectContaining({method:"GET"}))}),it("sends POST request with object as payload",()=>{const e=new FormData;e.set("foo","bar"),e.set("bar","baz"),e.set("nested[works]","yes"),new o("https://example.com").post({foo:"bar",bar:"baz",nested:{works:"yes"}}),expect(window.fetch).toHaveBeenCalledWith("https://example.com/",jasmine.objectContaining({method:"POST",body:e}))}),it("sends POST request with string as payload",()=>{const e=JSON.stringify({foo:"bar",bar:"baz",nested:{works:"yes"}});new o("https://example.com").post(e),expect(window.fetch).toHaveBeenCalledWith("https://example.com/",jasmine.objectContaining({method:"POST",body:e}))}),it("sends PUT request with object as payload",()=>{const e=new FormData;e.set("foo","bar"),e.set("bar","baz"),e.set("nested[works]","yes"),new o("https://example.com").put({foo:"bar",bar:"baz",nested:{works:"yes"}}),expect(window.fetch).toHaveBeenCalledWith("https://example.com/",jasmine.objectContaining({method:"PUT",body:e}))}),it("sends PUT request with string as payload",()=>{const e=JSON.stringify({foo:"bar",bar:"baz",nested:{works:"yes"}});new o("https://example.com").put(e),expect(window.fetch).toHaveBeenCalledWith("https://example.com/",jasmine.objectContaining({method:"PUT",body:e}))}),it("sends DELETE request",()=>{new o("https://example.com").delete(),expect(window.fetch).toHaveBeenCalledWith("https://example.com/",jasmine.objectContaining({method:"DELETE"}))}),it("sends DELETE request with string as payload",()=>{const e=JSON.stringify({foo:"bar",bar:"baz",nested:{works:"yes"}});new o("https://example.com").delete(e),expect(window.fetch).toHaveBeenCalledWith("https://example.com/",jasmine.objectContaining({method:"DELETE",body:e}))}),describe("send GET requests",()=>{for(let t of function*(){yield["plaintext","foobar huselpusel",{},(e,t)=>{expect("string"==typeof e).toBeTruthy(),expect(e).toEqual(t)}],yield["JSON",JSON.stringify({foo:"bar",baz:"bencer"}),{"Content-Type":"application/json"},(e,t)=>{expect("object"==typeof e).toBeTruthy(),expect(JSON.stringify(e)).toEqual(t)}],yield["JSON with utf-8",JSON.stringify({foo:"bar",baz:"bencer"}),{"Content-Type":"application/json; charset=utf-8"},(e,t)=>{expect("object"==typeof e).toBeTruthy(),expect(JSON.stringify(e)).toEqual(t)}]}()){let[a,n,i,r]=t;it("receives a "+a+" response",t=>{const a=new Response(n,{headers:i});e.resolve(a),new o("https://example.com").get().then(e=>__awaiter(void 0,void 0,void 0,(function*(){const o=yield e.resolve();expect(window.fetch).toHaveBeenCalledWith("https://example.com/",jasmine.objectContaining({method:"GET"})),r(o,n),t()})))})}}),describe("send requests with different input urls",()=>{for(let e of function*(){yield["absolute url with domain","https://example.com",{},"https://example.com/"],yield["absolute url with domain, with query parameter","https://example.com",{foo:"bar",bar:{baz:"bencer"}},"https://example.com/?foo=bar&bar[baz]=bencer"],yield["absolute url without domain","/foo/bar",{},window.location.origin+"/foo/bar"],yield["absolute url without domain, with query parameter","/foo/bar",{foo:"bar",bar:{baz:"bencer"}},window.location.origin+"/foo/bar?foo=bar&bar[baz]=bencer"],yield["relative url without domain","foo/bar",{},window.location.origin+"/foo/bar"],yield["relative url without domain, with query parameter","foo/bar",{foo:"bar",bar:{baz:"bencer"}},window.location.origin+"/foo/bar?foo=bar&bar[baz]=bencer"]}()){let[t,a,n,i]=e;it("with "+t,()=>{new o(a).withQueryArguments(n).get(),expect(window.fetch).toHaveBeenCalledWith(i,jasmine.objectContaining({method:"GET"}))})}}),describe("send requests with query arguments",()=>{for(let e of function*(){yield["single level of arguments",{foo:"bar",bar:"baz"},"https://example.com/?foo=bar&bar=baz"],yield["nested arguments",{foo:"bar",bar:{baz:"bencer"}},"https://example.com/?foo=bar&bar[baz]=bencer"],yield["string argument","hello=world&foo=bar","https://example.com/?hello=world&foo=bar"],yield["array of arguments",["foo=bar","husel=pusel"],"https://example.com/?foo=bar&husel=pusel"]}()){let[t,a,n]=e;it("with "+t,()=>{new o("https://example.com/").withQueryArguments(a).get(),expect(window.fetch).toHaveBeenCalledWith(n,jasmine.objectContaining({method:"GET"}))})}})})}));
\ No newline at end of file