page.js 259 B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. /**
  4. Parse content of a page
  5. @param {string} html
  6. @return {Object}
  7. */
  8. function parsePage(html) {
  9. return {
  10. content: html
  11. };
  12. }
  13. exports.default = parsePage;