setup-node/node_modules/invert-kv/index.js
eric sciple e7ed525da5 .
2020-01-24 16:30:50 -05:00

15 lines
256 B
JavaScript

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