8 lines
229 B
JavaScript
8 lines
229 B
JavaScript
//Checking that the request body is empty
|
|
exports.isEmpty = function (obj) {
|
|
for(var prop in obj) {
|
|
if(obj.hasOwnProperty(prop))
|
|
return false;
|
|
}
|
|
return JSON.stringify(obj) === JSON.stringify({});
|
|
} |