UNPKG

typia

Version:

Superfast runtime validators with only one line

11 lines (10 loc) 245 B
export const _httpFormDataReadString = ( input: string | File | null, ): string | null | undefined => input instanceof File ? (input as any) : input === null ? undefined : input === "null" ? null : input;