mirror of
https://github.com/BreizhHardware/express-prom-bundle.git
synced 2026-03-18 21:30:38 +01:00
12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
'use strict';
|
|
|
|
module.exports = function(res, opts) {
|
|
opts = opts || {};
|
|
|
|
if (typeof opts.formatStatusCode === 'function') {
|
|
return opts.formatStatusCode(res, opts);
|
|
}
|
|
|
|
return res.status_code;
|
|
};
|