(contentType?: string)
| 31 | } |
| 32 | |
| 33 | export function isFormData(contentType?: string): boolean { |
| 34 | return !!contentType && contentType.toLowerCase().includes('multipart/form-data'); |
| 35 | } |
| 36 | |
| 37 | export function isPlainObject(value: unknown): boolean { |
| 38 | return typeof value === 'object' && value !== null && !Array.isArray(value); |
no outgoing calls
no test coverage detected