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

Function invoker

static/vuejs/vue.runtime.js:1650–1662  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected