UNPKG

@grail-ui/svelte

Version:

[![NPM](https://img.shields.io/npm/v/@grail-ui/svelte)](https://www.npmjs.com/package/@grail-ui/svelte) [![minified](https://img.shields.io/bundlephobia/min/@grail-ui/svelte)](https://bundlephobia.com/package/@grail-ui/svelte) [![minified + zipped](https:

13 lines (12 loc) 313 B
/** * Calls all functions in the order they were chained with the same arguments. */ export function chain(...callbacks) { return (...args) => { for (const callback of callbacks) { if (typeof callback === 'function') { callback(...args); } } }; }