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

Function isProxy

packages/reactivity/src/reactive.ts:363–365  ·  view source on GitHub ↗
(value: any)

Source from the content-addressed store, hash-verified

361 */
362/*@__NO_SIDE_EFFECTS__*/
363export function isProxy(value: any): boolean {
364 return value ? !!value[ReactiveFlags.RAW] : false
365}
366
367/**
368 * Returns the raw, original object of a Vue-created proxy.

Callers 7

toRefsFunction · 0.90
constructorMethod · 0.90
searchProxyFunction · 0.90
reactive.spec.tsFile · 0.90
readonly.spec.tsFile · 0.90
_createVNodeFunction · 0.90
guardReactivePropsFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected