Skip to main content
variable isPlainObject
import { isPlainObject } from "https://deno.land/x/30_seconds_of_typescript@v1.0.1/util.ts";

Checks if the provided value is an object created by the Object constructor.

Check if the provided value is truthy, use typeof to check if it is an object and Object.constructor to make sure the constructor is equal to Object.

type

(val: any) => unknown