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

isObject

Checks if the given value is an object.

function isObject(value: unknown): value is Record<string | symbol | number, unknown>;
§
isObject(value: unknown): value is Record<string | symbol | number, unknown>
[src]

§Parameters

§
value: unknown
[src]

§Return Type

§
value is Record<string | symbol | number, unknown>
[src]