mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
9 lines
176 B
JavaScript
9 lines
176 B
JavaScript
export function swapKeyAndValue(dict) {
|
|
const ret = {};
|
|
for (const key in dict) {
|
|
if (dict.hasOwnProperty(key)) {
|
|
ret[dict[key]] = key;
|
|
}
|
|
}
|
|
return ret;
|
|
}
|