15 lines
259 B
JavaScript
15 lines
259 B
JavaScript
"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;
|