MCPcopy Create free account
hub / github.com/0010aor/FlashNotes / isFormData

Function isFormData

frontend/src/client/core/request.ts:23–25  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

21}
22
23export const isFormData = (value: unknown): value is FormData => {
24 return value instanceof FormData
25}
26
27export const isSuccess = (status: number): boolean => {
28 return status >= 200 && status < 300

Callers 1

getHeadersFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected