mirror of
https://gitea.com/actions/setup-python.git
synced 2024-11-22 18:19:35 +01:00
15 lines
256 B
JavaScript
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;
|
|
};
|