UNPKG

typia

Version:

Superfast runtime validators with only one line

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