resurfaceio / logger-nodejs

Log API calls with Node.js
Apache License 2.0
16 stars 2 forks source link

#28 Koa middleware #32

Closed monrax closed 3 years ago

monrax commented 3 years ago

Also replaced body.hasOwnProperty(key) with Object.prototype.hasOwnProperty.call(body, key) because Koa's objects are based on null directly (and because of this, they don't inherit from Object.protoype). Also, this way might be safer