astro-ghostcms/.pnpm-store/v3/files/76/dd4ead54ef286a5058eef6f96bd...

9 lines
301 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import { isFunction } from "./isFunction.js";
export const isFile = (value) => Boolean(value
&& typeof value === "object"
&& isFunction(value.constructor)
&& value[Symbol.toStringTag] === "File"
&& isFunction(value.stream)
&& value.name != null);
export const isFileLike = isFile;