"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** Parse content of a page @param {string} html @return {Object} */ function parsePage(html) { return { content: html }; } exports.default = parsePage;