function returnHTMLSuccess()

in Modules/common.js [183:190]


function returnHTMLSuccess(HTMLvalue, callback) {
    var response = {
        statusCode: 200,
        headers: {"content-type": "text/html", "cache-control": "no-store"},
        body: HTMLvalue
    };
    callback(null, response);
}