MCPcopy Index your code
hub / github.com/simstudioai/sim / isRecordLike

Function isRecordLike

packages/utils/src/object.ts:45–47  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

43 * reach for isPlainRecord when you must exclude exotic objects.
44 */
45export function isRecordLike(value: unknown): value is Record<string, unknown> {
46 return typeof value === 'object' && value !== null && !Array.isArray(value)
47}
48
49/**
50 * Recursively sorts the keys of every plain object reachable from {@link value},

Callers 15

deepMergeInputMappingFunction · 0.90
asRecordFunction · 0.90
mapLeadFunction · 0.90
mapCampaignFunction · 0.90
getSearchResultsFunction · 0.90
search_memories.tsFile · 0.90
getMemoriesFromResponseFunction · 0.90
getMemoryIdFunction · 0.90
get_memories.tsFile · 0.90
emailBisonRecordDataFunction · 0.90
toRecordFunction · 0.90
getIdArrayFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected