UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

12 lines (11 loc) 287 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.call = void 0; function call(funcs, ...args) { if (Array.isArray(funcs)) { funcs.forEach((func) => call(func, ...args)); } else return funcs(...args); } exports.call = call;