UNPKG

wix-style-react

Version:
10 lines (9 loc) 272 B
/** * Chain event handlers. * * * @returns an event handler which calls all given handler by order while skipping undefined handlers. */ export function chainEventHandlers(...handlers) { return event => handlers.filter(i => i).forEach(handler => handler(event)); }