UNPKG

react-router-ga

Version:

[![Downloads](https://img.shields.io/npm/dm/react-router-ga)](https://npm.im/react-router-ga) [![Version](https://img.shields.io/npm/v/react-router-ga)](https://npm.im/react-router-ga) [![License](https://img.shields.io/npm/l/react-router-ga)](https://ope

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