Files
testapi/node_modules/node-mocks-http/lib/utils.js
2026-03-03 15:23:00 +00:00

10 lines
239 B
JavaScript

module.exports.convertKeysToLowerCase = (map) => {
const newMap = {};
for (const key in map) {
if ({}.hasOwnProperty.call(map, key)) {
newMap[key.toLowerCase()] = map[key];
}
}
return newMap;
};