MCPcopy Index your code
hub / github.com/massCodeIO/massCode / isRecord

Function isRecord

src/main/windowBounds.ts:12–14  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

10}
11
12function isRecord(value: unknown): value is Record<string, unknown> {
13 return typeof value === 'object' && value !== null
14}
15
16function readNumber(value: unknown) {
17 return typeof value === 'number' && Number.isFinite(value)

Callers 1

normalizeWindowBoundsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected