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

Function isFunction

src/utils/utils.ts:93–95  ·  view source on GitHub ↗
(x: unknown)

Source from the content-addressed store, hash-verified

91}
92
93export function isFunction(x: unknown): x is Function {
94 return typeof x === 'function'
95}
96
97export function isUndef(v: any): boolean {
98 return v === undefined || v === null

Callers 10

installFunction · 0.90
isVueFunction · 0.90
functionApiInitFunction · 0.90
initSetupFunction · 0.90
defineAsyncComponentFunction · 0.90
loadFunction · 0.90
createWatcherFunction · 0.90
watchFunction · 0.90
computedFunction · 0.90
injectFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…