Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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;