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">

14 lines (10 loc) 244 B
// @flow import type {Notifier, Observer} from "../types"; const observe = <Result>( {observers, ...rest}: Notifier<Result>, observer: Observer<Result> ) => ({ ...rest, observers: [...observers, observer] }); export default observe;