c9-core/node_modules/c9/object.js

9 wiersze
196 B
JavaScript
Czysty Zwykły widok Historia

2016-06-26 11:53:19 +00:00
/*
* Swap keys and values of an object
*/
exports.invert = function(obj) {
return Object.keys(obj).reduce(function(res, key) {
res[obj[key]] = key;
return res;
}, {});
};