MCPcopy Create free account
hub / github.com/Effect-TS/effect / isRecord

Function isRecord

packages/tools/jsdocs/src/Jsdocs.ts:544–546  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

542}
543
544function isRecord(value: unknown): value is Record<string, unknown> {
545 return typeof value === "object" && value !== null && !Array.isArray(value)
546}
547
548function findPackageRoot(filename: string): string | undefined {
549 let directory = path.dirname(path.resolve(filename))

Callers 3

readPackageMetadataFunction · 0.70
getPackageExportMatchFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected