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

16 lines (12 loc) 256 B
'use strict'; module.exports = object => { if (typeof object !== 'object') { throw new TypeError('Expected an object'); } const ret = {}; for (const key of Object.keys(object)) { const value = object[key]; ret[value] = key; } return ret; };