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

Function isSet

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

Source from the content-addressed store, hash-verified

69 toTypeString(val) === '[object Map]'
70
71export const isSet = (val: unknown): val is Set<any> =>
72 toTypeString(val) === '[object Set]'
73
74const MAX_VALID_ARRAY_LENGTH = 4294967295 // Math.pow(2, 32) - 1
75export function isValidArrayIndex(val: any): boolean {

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…