MCPcopy Create free account
hub / github.com/TruthHun/BookStack / createFnInvoker

Function createFnInvoker

static/vuejs/vue.runtime.common.js:1645–1661  ·  view source on GitHub ↗
(fns)

Source from the content-addressed store, hash-verified

1643});
1644
1645function createFnInvoker (fns) {
1646 function invoker () {
1647 var arguments$1 = arguments;
1648
1649 var fns = invoker.fns;
1650 if (Array.isArray(fns)) {
1651 for (var i = 0; i < fns.length; i++) {
1652 fns[i].apply(null, arguments$1);
1653 }
1654 } else {
1655 // return handler return value for single handlers
1656 return fns.apply(null, arguments)
1657 }
1658 }
1659 invoker.fns = fns;
1660 return invoker
1661}
1662
1663function updateListeners (
1664 on,

Callers 2

updateListenersFunction · 0.70
mergeVNodeHookFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected