isPlainObject
import { isPlainObject } from "https://esm.sh/@supabase/storage-js@2.89.0/dist/index.d.mts";Determine if input is a plain object An object is plain if it's created by either {}, new Object(), or Object.create(null)
const isPlainObject: (value: object) => boolean;