mirror of
https://git.mirrors.martin98.com/https://github.com/actions/setup-python
synced 2025-08-02 23:40:41 +08:00
16 lines
256 B
JavaScript
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;
|
|
};
|