MCPcopy Create free account
hub / github.com/denoland/std / isObject

Function isObject

yaml/_utils.ts:6–8  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

4// Copyright 2018-2026 the Deno authors. MIT license.
5
6export function isObject(value: unknown): value is Record<string, unknown> {
7 return value !== null && typeof value === "object";
8}
9
10export function isNegativeZero(i: number): boolean {
11 return i === 0 && Number.NEGATIVE_INFINITY === 1 / i;

Callers 3

mergeMappingsMethod · 0.90
getDuplicateObjectsFunction · 0.90
stringifyNodeMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected