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

9 lines
301 B
Plaintext

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;