@dotcom-reliability-kit/serialize-request
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -194,3 +194,3 @@ /** | ||
exports = module.exports = serializeRequest; | ||
module.exports = serializeRequest; | ||
@@ -202,5 +202,7 @@ // We freeze this object so that we avoid any side-effects | ||
// could cause some weird issues so we lock it down. | ||
exports.DEFAULT_INCLUDED_HEADERS = Object.freeze([...DEFAULT_INCLUDED_HEADERS]); | ||
module.exports.DEFAULT_INCLUDED_HEADERS = Object.freeze([ | ||
...DEFAULT_INCLUDED_HEADERS | ||
]); | ||
// @ts-ignore | ||
module.exports.default = module.exports; |
{ | ||
"name": "@dotcom-reliability-kit/serialize-request", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "A utility function to serialize a request object in a way that's friendly to loggers, view engines, and converting to JSON", | ||
@@ -19,4 +19,4 @@ "repository": { | ||
"devDependencies": { | ||
"@types/express": "^4.17.14" | ||
"@types/express": "^4.17.17" | ||
} | ||
} |
222