MCPcopy
hub / github.com/vuejs/core / isSet

Function isSet

packages/shared/src/general.ts:42–43  ·  view source on GitHub ↗
(val: unknown)

Source from the content-addressed store, hash-verified

40export const isMap = (val: unknown): val is Map<any, any> =>
41 toTypeString(val) === '[object Map]'
42export const isSet = (val: unknown): val is Set<any> =>
43 toTypeString(val) === '[object Set]'
44
45export const isDate = (val: unknown): val is Date =>
46 toTypeString(val) === '[object Date]'

Callers 6

traverseFunction · 0.90
replacerFunction · 0.90
createdFunction · 0.90
setCheckedFunction · 0.90
setSelectedFunction · 0.90
initVModelForSSRFunction · 0.90

Calls 1

toTypeStringFunction · 0.85

Tested by

no test coverage detected