1
0
Fork 0
CompleteNodeJS/notes-app/node_modules/invert-kv/index.js

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