Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
KonnorRogers committed Oct 16, 2021
1 parent 0c572bb commit 1656007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/methodSubmission.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function getBody (method: string, additionalParams?: string | null): URLSearchPa
const val = value.toString()

// Only strings can be added to UrlSearchParams
const isString = (val instanceof String || typeof val === "string")
const isString = (val instanceof String || typeof val === 'string')
if (!isString) continue

encodedFormData.append(key, val)
Expand Down

0 comments on commit 1656007

Please sign in to comment.