UNPKG

node-mocks-http

Version:

Mock 'http' objects for testing Express, Next.js and Koa routing functions

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