When using body-parser in node.js, I want the send keys be case insensitive. suppose that we send a json such as { "Name" : "Dariush" } and I want to get 'Name' value, in two ways:
request.body.name & request.body.Name
But by default, just request.body.Name works! and I want the 'request.body.name' works too.