MCPcopy Create free account
hub / github.com/effect-app/libs / isRecord

Function isRecord

packages/cli/src/sync-effect-app-subtree.ts:37–38  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

35const packagePreference = Object.keys(packageManifestPaths)
36
37const isRecord = (value: unknown): value is Record<string, unknown> =>
38 typeof value === "object" && value !== null && !Array.isArray(value)
39
40const isEffectAppPackage = (name: string) => name === "effect-app" || name.startsWith("@effect-app/")
41

Callers 2

parsePackageVersionFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…