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

Function invokeArrayFns

packages/shared/src/general.ts:146–150  ·  view source on GitHub ↗
(fns: Function[], ...arg: any[])

Source from the content-addressed store, hash-verified

144 !Object.is(value, oldValue)
145
146export const invokeArrayFns = (fns: Function[], ...arg: any[]): void => {
147 for (let i = 0; i < fns.length; i++) {
148 fns[i](...arg)
149 }
150}
151
152export const def = (
153 obj: object,

Callers 6

getModelAssignerFunction · 0.90
componentUpdateFnFunction · 0.90
setupRenderEffectFunction · 0.90
unmountComponentFunction · 0.90
setupFunction · 0.90
installCompatMountFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected