UNPKG

@dillonkearns/elm-graphql

Version:

<img src="https://cdn.jsdelivr.net/gh/martimatix/logo-graphqelm/logo.svg" alt="dillonearns/elm-graphql logo" width="40%" align="right">

11 lines (6 loc) 261 B
// @flow import notify from "./notify"; import type {Event, Notifier} from "../types"; const notifyall = (notifiers: Array<Notifier<any>>, event: Event, data: any) => notifiers.forEach(notifier => notify(notifier, event, data)); export default notifyall;