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

Function isSymbol

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

Source from the content-addressed store, hash-verified

50 typeof val === 'function'
51export const isString = (val: unknown): val is string => typeof val === 'string'
52export const isSymbol = (val: unknown): val is symbol => typeof val === 'symbol'
53export const isObject = (val: unknown): val is Record<any, any> =>
54 val !== null && typeof val === 'object'
55

Callers 15

constructorMethod · 0.90
hasOwnPropertyFunction · 0.90
getMethod · 0.90
hasMethod · 0.90
triggerFunction · 0.90
ssrTransformComponentFunction · 0.90
replacerFunction · 0.90
stringifySymbolFunction · 0.90
looseEqualFunction · 0.90
stringifyNodeFunction · 0.90
evaluateConstantFunction · 0.90
genNodeFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected