MCPcopy
hub / github.com/vuejs/composition-api / isMap

Function isMap

src/utils/utils.ts:68–69  ·  view source on GitHub ↗
(val: unknown)

Source from the content-addressed store, hash-verified

66 objectToString.call(value)
67
68export const isMap = (val: unknown): val is Map<any, any> =>
69 toTypeString(val) === '[object Map]'
70
71export const isSet = (val: unknown): val is Set<any> =>
72 toTypeString(val) === '[object Set]'

Callers 1

traverseFunction · 0.90

Calls 1

toTypeStringFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…