UNPKG

@cran/vue.core

Version:

Cranberry Vue Core Utilities

9 lines (8 loc) 168 B
export function callHook(hook, args) { if (!hook) { return; } for (const fn of Array.isArray(hook) ? hook : [hook,]) { fn(...args); } }