UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

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; };