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

Function createFnInvoker

static/vuejs/vue.common.js:1649–1665  ·  view source on GitHub ↗
(fns)

Source from the content-addressed store, hash-verified

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

Callers 2

updateListenersFunction · 0.70
mergeVNodeHookFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected