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

Function isObject

toml/_parser.ts:165–167  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

163}
164
165function isObject(value: unknown): value is Record<string, unknown> {
166 return typeof value === "object" && value !== null;
167}
168
169function getTargetValue(target: Record<string, unknown>, keys: string[]) {
170 const key = keys[0];

Callers 2

deepAssignTableFunction · 0.70
deepAssignTableArrayFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected