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

Function createFnInvoker

static/vuejs/vue.js:1653–1669  ·  view source on GitHub ↗
(fns)

Source from the content-addressed store, hash-verified

1651});
1652
1653function createFnInvoker (fns) {
1654 function invoker () {
1655 var arguments$1 = arguments;
1656
1657 var fns = invoker.fns;
1658 if (Array.isArray(fns)) {
1659 for (var i = 0; i < fns.length; i++) {
1660 fns[i].apply(null, arguments$1);
1661 }
1662 } else {
1663 // return handler return value for single handlers
1664 return fns.apply(null, arguments)
1665 }
1666 }
1667 invoker.fns = fns;
1668 return invoker
1669}
1670
1671function updateListeners (
1672 on,

Callers 2

updateListenersFunction · 0.70
mergeVNodeHookFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected