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

Function createFnInvoker

static/vuejs/vue.esm.js:1647–1663  ·  view source on GitHub ↗
(fns)

Source from the content-addressed store, hash-verified

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

Callers 2

updateListenersFunction · 0.70
mergeVNodeHookFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected