"use strict"; const cheerio = require("cheerio"); module.exports = function appendHtml(body, htmlToAppend) { let $ = cheerio.load(body); $("body").append($(htmlToAppend)); return $.html(); };