Files
setup-kustomize/node_modules/invert-kv/index.js
Imran Ismail 99f65d1591 Bootstrap
2019-09-05 03:53:25 +08:00

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