@@ -272,7 +272,7 @@ function base64(str: string): string {
272272function getQueryString(params: Record<string, any>): string {
273273 const searchParams = new URLSearchParams();
274274
275- const process = (key:string, value: any) => {
275+ const process = (key: string, value: any) => {
276276 if (isDefined(value)) {
277277 if (Array.isArray(value)) {
278278 value.forEach(v => {
@@ -326,7 +326,7 @@ function getFormData(options: ApiRequestOptions): FormData | undefined {
326326 .filter(([_, value]) => isDefined(value))
327327 .forEach(([key, value]) => {
328328 if (Array.isArray(value)) {
329- value.forEach(v => append (key, v));
329+ value.forEach(v => process (key, v));
330330 } else {
331331 process(key, value);
332332 }
@@ -3121,7 +3121,7 @@ function base64(str: string): string {
31213121function getQueryString(params: Record<string, any>): string {
31223122 const searchParams = new URLSearchParams();
31233123
3124- const process = (key:string, value: any) => {
3124+ const process = (key: string, value: any) => {
31253125 if (isDefined(value)) {
31263126 if (Array.isArray(value)) {
31273127 value.forEach(v => {
@@ -3175,7 +3175,7 @@ function getFormData(options: ApiRequestOptions): FormData | undefined {
31753175 .filter(([_, value]) => isDefined(value))
31763176 .forEach(([key, value]) => {
31773177 if (Array.isArray(value)) {
3178- value.forEach(v => append (key, v));
3178+ value.forEach(v => process (key, v));
31793179 } else {
31803180 process(key, value);
31813181 }
0 commit comments