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 (8 loc) 251 B
// @flow /** * Returns input if it is an Array or returns a new Array with input inside if * it is not. */ const convertIfNot = <Input>(input: Input): Input | Array<Input> => Array.isArray(input) ? input : [input]; export default convertIfNot;