mirror of
https://github.com/a-sync/game-server-watcher.git
synced 2026-07-31 09:28:47 -04:00
11 lines
178 B
JavaScript
11 lines
178 B
JavaScript
'use strict';
|
|
module.exports = object => {
|
|
const result = {};
|
|
|
|
for (const [key, value] of Object.entries(object)) {
|
|
result[key.toLowerCase()] = value;
|
|
}
|
|
|
|
return result;
|
|
};
|