all files / api-middleware-response/dist/ header.js

100% Statements 5/5
100% Branches 2/2
100% Functions 1/1
100% Lines 5/5
1 2 3 4 5 6 7 8 9 10 11 12      22× 22× 17×        
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class Header {
    constructor(contentType) {
        this.contentType = contentType;
        if (!contentType) {
            this.contentType = "application/json";
        }
    }
}
exports.Header = Header;